Lines Matching full:valsize
318 DWORD valSize;
320 valSize = GetEnvironmentVariableA(name, NULL, 0);
322 // valSize DOES include the null terminator, so for any set variable
324 if (valSize == 0)
330 inst->alloc_callbacks.pUserData, valSize, sizeof(char *),
333 retVal = (char *)malloc(valSize);
337 GetEnvironmentVariableA(name, retVal, valSize);