Searched refs:cchNeeded (Results 1 – 2 of 2) sorted by relevance
/aoo42x/main/sal/systools/win32/uwinapi/ |
H A D | CommandLineToArgvW.cpp | 89 int cchNeeded = MultiByteToWideChar( CP_ACP, 0, szFileName, -1, NULL, 0 ); variable 91 lpArgvW = (LPWSTR *)GlobalAlloc( 0, cchNeeded * sizeof(WCHAR) + sizeof(LPWSTR) ); 97 MultiByteToWideChar( CP_ACP, 0, szFileName, -1, lpArgvW[0], cchNeeded ); 108 int cchNeeded = 0; variable 120 cchNeeded += lpArgEnd - lpScan + 1; 127 lpArgvW = (LPWSTR *)GlobalAlloc( 0, sizeof(LPWSTR) * (nTokens + 1) + sizeof(WCHAR) * cchNeeded );
|
H A D | DrawStateW.cpp | 51 …int cchNeeded = WideCharToMultiByte( CP_ACP, 0, (LPCWSTR)lData, cchWideChar, NULL, 0, NULL, NULL ); variable 53 lpTextA = (LPSTR)_alloca( cchNeeded * sizeof(CHAR) ); 61 WideCharToMultiByte( CP_ACP, 0, (LPCWSTR)lData, cchWideChar, lpTextA, cchNeeded, NULL, NULL );
|
Completed in 8 milliseconds