Searched refs:pszRawBuffer (Results 1 – 1 of 1) sorted by relevance
/reactos/dll/cpl/sysdm/ |
H A D | userprofile.c | 33 PWSTR pszRawBuffer = NULL, pszCookedBuffer = NULL; in OnProfileTypeInit() local 36 nLength = LoadStringW(hApplet, IDS_USERPROFILE_TYPE_TEXT, (PWSTR)&pszRawBuffer, 0); in OnProfileTypeInit() 37 pszRawBuffer = NULL; in OnProfileTypeInit() 41 pszRawBuffer = HeapAlloc(GetProcessHeap(), 0, (nLength + 1) * sizeof(WCHAR)); in OnProfileTypeInit() 42 if (pszRawBuffer == NULL) in OnProfileTypeInit() 45 LoadStringW(hApplet, IDS_USERPROFILE_TYPE_TEXT, pszRawBuffer, nLength + 1); in OnProfileTypeInit() 51 swprintf(pszCookedBuffer, pszRawBuffer, pProfileData->pszFullName); in OnProfileTypeInit() 65 if (pszRawBuffer != NULL) in OnProfileTypeInit() 66 HeapFree(GetProcessHeap(), 0, pszRawBuffer); in OnProfileTypeInit()
|