add support for codepage selection in winchar_*ansi
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4886 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
ac156f5ebe
commit
478f9536e4
2 changed files with 9 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "Platform.h"
|
||||
|
||||
WCHAR *winchar_fromansi(const char* s);
|
||||
char *winchar_toansi(const WCHAR* ws);
|
||||
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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue