ANSI defs
| 110 | #else |
| 111 | // ANSI defs |
| 112 | int NSISCALL PopStringW(wchar_t* wideStr) |
| 113 | { |
| 114 | char* ansiStr = (char*) GlobalAlloc(GPTR, g_stringsize); |
| 115 | int rval = popstring(ansiStr); |
| 116 | MultiByteToWideChar(CP_ACP, 0, ansiStr, -1, wideStr, g_stringsize); |
| 117 | GlobalFree((HGLOBAL)ansiStr); |
| 118 | return rval; |
| 119 | } |
| 120 | |
| 121 | int NSISCALL PopStringNW(wchar_t* wideStr, int maxlen) |
| 122 | { |
nothing calls this directly
no test coverage detected