ANSI defs
| 121 | #else |
| 122 | // ANSI defs |
| 123 | int NSISCALL PopStringW(LPWSTR wideStr) |
| 124 | { |
| 125 | LPSTR ansiStr = (LPSTR) GlobalAlloc(GPTR, g_stringsize); |
| 126 | int rval = popstring(ansiStr); |
| 127 | MultiByteToWideChar(CP_ACP, 0, ansiStr, -1, wideStr, g_stringsize); |
| 128 | GlobalFree((HGLOBAL)ansiStr); |
| 129 | return rval; |
| 130 | } |
| 131 | |
| 132 | int NSISCALL PopStringNW(LPWSTR wideStr, int maxlen) |
| 133 | { |
nothing calls this directly
no test coverage detected