Home
last modified time | relevance | path

Searched refs:pStringBuffer (Results 1 – 5 of 5) sorted by relevance

/reactos/base/applications/sc/
H A Dsdshow.c19 LPTSTR pStringBuffer = NULL; in SdShow() local
80 &pStringBuffer, in SdShow()
88 _tprintf(_T("\n%s\n"), pStringBuffer); in SdShow()
94 if (pStringBuffer != NULL) in SdShow()
95 LocalFree(pStringBuffer); in SdShow()
H A Dmisc.c170 LPTSTR pStringBuffer = NULL; in ParseFailureActions() local
181 pStringBuffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (nLength + 2) * sizeof(TCHAR)); in ParseFailureActions()
182 if (pStringBuffer == NULL) in ParseFailureActions()
188 CopyMemory(pStringBuffer, lpActions, nLength * sizeof(TCHAR)); in ParseFailureActions()
191 p = pStringBuffer; in ParseFailureActions()
200 p = pStringBuffer; in ParseFailureActions()
213 HeapFree(GetProcessHeap(), 0, pStringBuffer); in ParseFailureActions()
219 p = pStringBuffer; in ParseFailureActions()
249 HeapFree(GetProcessHeap(), 0, pStringBuffer); in ParseFailureActions()
/reactos/dll/win32/wlanapi/
H A Dmain.c321 IN PWCHAR pStringBuffer, in WlanReasonCodeToString() argument
324 if ((pReserved != NULL) || (pStringBuffer == NULL) || (dwBufferSize == 0)) in WlanReasonCodeToString()
/reactos/win32ss/user/rtl/
H A Dtext.c969 ULONG_PTR pStringBuffer; in UserExtTextOutW() local
976 pStringBuffer = ArgumentLength; in UserExtTextOutW()
1005 Argument->lpString = (LPWSTR)pStringBuffer; in UserExtTextOutW()
1006 pStringBuffer += (ULONG_PTR)Argument; in UserExtTextOutW()
1008 Status = RtlStringCchCopyNW((LPWSTR)pStringBuffer, count + 1, lpString, count); in UserExtTextOutW()
/reactos/sdk/include/psdk/
H A Dwlanapi.h289 …nCodeToString(IN DWORD dwReasonCode, IN DWORD dwBufferSize, IN PWCHAR pStringBuffer, PVOID pReserv…