Searched refs:codePage (Results 1 - 3 of 3) sorted by relevance

/seL4-l4v-10.1.1/HOL4/polyml/libpolyml/
H A Dpolystring.cpp115 unsigned int codePage = CP_ACP; variable
119 if (_tcscmp(codePageArg, _T("CP_ACP")) == 0) { codePage = CP_ACP; return true; }
121 { codePage = CP_UTF7; return true; }
123 { codePage = CP_UTF8; return true; }
127 codePage = _tcstol(codePageArg, &endp, 10);
144 int outputLen = WideCharToMultiByte(codePage, 0, buffer, (int)buffLen, NULL, 0, NULL, NULL);
154 int check = WideCharToMultiByte(codePage, 0, buffer, (int)buffLen, result->chars, outputLen, NULL, NULL);
172 int space = MultiByteToWideChar(codePage, 0, iPtr, iLength, buff, (int)bufflen-1);
192 int chars = MultiByteToWideChar(codePage, 0, iPtr, iLength, NULL, 0);
196 chars = MultiByteToWideChar(codePage,
[all...]
H A Dpolystring.h70 extern unsigned int codePage;
H A DConsole.cpp711 int wlen = MultiByteToWideChar(codePage, 0, buff, -1, NULL, 0);
714 wlen = MultiByteToWideChar(codePage, 0, buff, -1, wBuff, wlen);

Completed in 37 milliseconds