diff options
Diffstat (limited to 'protocols/Weather/src/stdafx.h')
-rw-r--r-- | protocols/Weather/src/stdafx.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/protocols/Weather/src/stdafx.h b/protocols/Weather/src/stdafx.h index 11ef55d70d..6a0ebd261d 100644 --- a/protocols/Weather/src/stdafx.h +++ b/protocols/Weather/src/stdafx.h @@ -368,6 +368,7 @@ extern HGENMENU hMwinMenu; // check if weather is currently updating extern BOOL ThreadRunning; +extern bool g_bIsUtf; //============ FUNCTION PRIMITIVES ============ @@ -430,11 +431,11 @@ void EraseAllInfo(void); void GetDataValue(WIDATAITEM *UpdateData, wchar_t *Data, wchar_t** szInfo); void ConvertDataValue(WIDATAITEM *UpdateData, wchar_t *Data); -void wSetData(char **Data, const char *Value); -void wSetData(WCHAR **Data, const char *Value); -void wSetData(WCHAR **Data, const WCHAR *Value); -void wfree(char **Data); -void wfree(WCHAR **Data); +void wSetData(char *&Data, const char *Value); +void wSetData(WCHAR *&Data, const char *Value); +void wSetData(WCHAR *&Data, const WCHAR *Value); +void wfree(char *&Data); +void wfree(WCHAR *&Data); void DBDataManage(MCONTACT hContact, WORD Mode, WPARAM wParam, LPARAM lParam); |