| 60 | |
| 61 | #ifdef _UNICODE |
| 62 | int NSISCALL PopStringA(char* ansiStr) |
| 63 | { |
| 64 | wchar_t* wideStr = (wchar_t*) GlobalAlloc(GPTR, g_stringsize*sizeof(wchar_t)); |
| 65 | int rval = popstring(wideStr); |
| 66 | WideCharToMultiByte(CP_ACP, 0, wideStr, -1, ansiStr, g_stringsize, NULL, NULL); |
| 67 | GlobalFree((HGLOBAL)wideStr); |
| 68 | return rval; |
| 69 | } |
| 70 | |
| 71 | int NSISCALL PopStringNA(char* ansiStr, int maxlen) |
| 72 | { |
nothing calls this directly
no test coverage detected