| 104 | } |
| 105 | |
| 106 | void NSISCALL GetUserVariableA(const int varnum, LPSTR ansiStr) |
| 107 | { |
| 108 | LPWSTR wideStr = getuservariable(varnum); |
| 109 | WideCharToMultiByte(CP_ACP, 0, wideStr, -1, ansiStr, g_stringsize, NULL, NULL); |
| 110 | } |
| 111 | |
| 112 | void NSISCALL SetUserVariableA(const int varnum, LPCSTR ansiStr) |
| 113 | { |
nothing calls this directly
no test coverage detected