Searched refs:dwTextLen (Results 1 – 2 of 2) sorted by relevance
/reactos/base/applications/notepad/ |
H A D | text.c | 300 static BOOL WriteEncodedText(HANDLE hFile, LPCWSTR pszText, DWORD dwTextLen, ENCODING encFile) in WriteEncodedText() argument 313 while(dwPos < dwTextLen) in WriteEncodedText() 319 dwByteCount = (dwTextLen - dwPos) * sizeof(WCHAR); in WriteEncodedText() 320 dwPos = dwTextLen; in WriteEncodedText() 324 dwByteCount = (dwTextLen - dwPos) * sizeof(WCHAR); in WriteEncodedText() 347 …iRequiredBytes = WideCharToMultiByte(iCodePage, 0, &pszText[dwPos], dwTextLen - dwPos, NULL, 0, NU… in WriteEncodedText() 370 dwPos = dwTextLen; in WriteEncodedText() 395 BOOL WriteText(HANDLE hFile, LPCWSTR pszText, DWORD dwTextLen, ENCODING encFile, EOLN iEoln) in WriteText() argument 417 while(dwNext < dwTextLen) in WriteText() 424 if (dwNext != dwTextLen) in WriteText() [all …]
|
H A D | notepad.h | 93 BOOL WriteText(HANDLE hFile, LPCWSTR pszText, DWORD dwTextLen, ENCODING encFile, EOLN iEoln);
|