2007-01-25 12:57:44 +00:00
|
|
|
#include "Platform.h"
|
|
|
|
|
2007-01-25 13:04:52 +00:00
|
|
|
WCHAR *winchar_fromansi(const char* s, unsigned int codepage = CP_ACP);
|
|
|
|
char *winchar_toansi(const WCHAR* ws, unsigned int codepage = CP_ACP);
|
2007-01-25 12:57:44 +00:00
|
|
|
WCHAR *winchar_strcpy(WCHAR *ws1, const WCHAR *ws2);
|
|
|
|
WCHAR *winchar_strncpy(WCHAR *ws1, const WCHAR *ws2, size_t n);
|
|
|
|
size_t winchar_strlen(WCHAR *ws);
|
2007-02-17 15:06:53 +00:00
|
|
|
WCHAR *winchar_strdup(WCHAR *ws);
|
2007-01-25 12:57:44 +00:00
|
|
|
int winchar_strcmp(const WCHAR *ws1, const WCHAR *ws2);
|
|
|
|
int winchar_stoi(const WCHAR *ws);
|