| 129 | } |
| 130 | |
| 131 | void NSISCALL PushStringW(wchar_t* wideStr) |
| 132 | { |
| 133 | char* ansiStr = (char*) GlobalAlloc(GPTR, g_stringsize); |
| 134 | WideCharToMultiByte(CP_ACP, 0, wideStr, -1, ansiStr, g_stringsize, NULL, NULL); |
| 135 | pushstring(ansiStr); |
| 136 | GlobalFree((HGLOBAL)ansiStr); |
| 137 | } |
| 138 | |
| 139 | void NSISCALL GetUserVariableW(const int varnum, wchar_t* wideStr) |
| 140 | { |
nothing calls this directly
no test coverage detected