| 140 | } |
| 141 | |
| 142 | void NSISCALL PushStringW(LPWSTR wideStr) |
| 143 | { |
| 144 | LPSTR ansiStr = (LPSTR) GlobalAlloc(GPTR, g_stringsize); |
| 145 | WideCharToMultiByte(CP_ACP, 0, wideStr, -1, ansiStr, g_stringsize, NULL, NULL); |
| 146 | pushstring(ansiStr); |
| 147 | GlobalFree((HGLOBAL)ansiStr); |
| 148 | } |
| 149 | |
| 150 | void NSISCALL GetUserVariableW(const int varnum, LPWSTR wideStr) |
| 151 | { |
nothing calls this directly
no test coverage detected