MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / PopStringW

Function PopStringW

cmake/Windows/Contrib/Inetc/pluginapi.c:112–119  ·  view source on GitHub ↗

ANSI defs

Source from the content-addressed store, hash-verified

110#else
111// ANSI defs
112int NSISCALL PopStringW(wchar_t* wideStr)
113{
114 char* ansiStr = (char*) GlobalAlloc(GPTR, g_stringsize);
115 int rval = popstring(ansiStr);
116 MultiByteToWideChar(CP_ACP, 0, ansiStr, -1, wideStr, g_stringsize);
117 GlobalFree((HGLOBAL)ansiStr);
118 return rval;
119}
120
121int NSISCALL PopStringNW(wchar_t* wideStr, int maxlen)
122{

Callers

nothing calls this directly

Calls 1

popstringFunction · 0.85

Tested by

no test coverage detected