| 71 | |
| 72 | #ifdef UNICODE |
| 73 | int NSISCALL PopStringA(LPSTR ansiStr) |
| 74 | { |
| 75 | LPWSTR wideStr = (LPWSTR) GlobalAlloc(GPTR, g_stringsize*sizeof(WCHAR)); |
| 76 | int rval = popstring(wideStr); |
| 77 | WideCharToMultiByte(CP_ACP, 0, wideStr, -1, ansiStr, g_stringsize, NULL, NULL); |
| 78 | GlobalFree((HGLOBAL)wideStr); |
| 79 | return rval; |
| 80 | } |
| 81 | |
| 82 | int NSISCALL PopStringNA(LPSTR ansiStr, int maxlen) |
| 83 | { |
nothing calls this directly
no test coverage detected