Added compability for EventUpdateManager-fix on Windows too
This commit is contained in:
parent
c3bf46124d
commit
a912ee2872
1 changed files with 8 additions and 0 deletions
|
@ -25,6 +25,14 @@
|
||||||
#define WCHAR_T_ENCODING "WCHAR_T"
|
#define WCHAR_T_ENCODING "WCHAR_T"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef va_copy
|
||||||
|
#ifdef __va_copy
|
||||||
|
#define va_copy(a,b) __va_copy(a,b)
|
||||||
|
#else /* !__va_copy */
|
||||||
|
#define va_copy(a,b) ((a)=(b))
|
||||||
|
#endif /* __va_copy */
|
||||||
|
#endif /* va_copy */
|
||||||
|
|
||||||
std::wstring TelldusCore::charToWstring(const char *value) {
|
std::wstring TelldusCore::charToWstring(const char *value) {
|
||||||
#ifdef _WINDOWS
|
#ifdef _WINDOWS
|
||||||
// Determine size
|
// Determine size
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue