| 159 | } |
| 160 | |
| 161 | void NSISCALL SetUserVariableW(const int varnum, LPCWSTR wideStr) |
| 162 | { |
| 163 | if (wideStr && isvalidnsisvarindex(varnum)) |
| 164 | { |
| 165 | LPSTR ansiStr = g_variables + varnum * g_stringsize; |
| 166 | WideCharToMultiByte(CP_ACP, 0, wideStr, -1, ansiStr, g_stringsize, NULL, NULL); |
| 167 | } |
| 168 | } |
| 169 | #endif |
| 170 | |
| 171 | // playing with integers |
nothing calls this directly
no outgoing calls
no test coverage detected