
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4886 212acab6-be3b-0410-9dea-997c60f758d6
9 lines
408 B
C
9 lines
408 B
C
#include "Platform.h"
|
|
|
|
WCHAR *winchar_fromansi(const char* s, unsigned int codepage = CP_ACP);
|
|
char *winchar_toansi(const WCHAR* ws, unsigned int codepage = CP_ACP);
|
|
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);
|
|
int winchar_strcmp(const WCHAR *ws1, const WCHAR *ws2);
|
|
int winchar_stoi(const WCHAR *ws);
|