Home
last modified time | relevance | path

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

/reactos/modules/rostests/winetests/ntdll/
H A Dpipe.c235 HANDLE hclient; in test_create() local
252 hclient = CreateFileW(testpipe, access[k], 0, 0, OPEN_EXISTING, 0, 0); in test_create()
253 if (hclient != INVALID_HANDLE_VALUE) { in test_create()
254 … res = pNtQueryInformationFile(hclient, &iosb, &info, sizeof(info), (FILE_INFORMATION_CLASS)24); in test_create()
260 res = listen_pipe(hclient, hEvent, &iosb, FALSE); in test_create()
262 CloseHandle(hclient); in test_create()
271 …ok(hclient != INVALID_HANDLE_VALUE, "CreateFile failed for sharing %x, access: %x, GetLastError: %… in test_create()
274 …ok(hclient == INVALID_HANDLE_VALUE, "CreateFile succeeded for sharing %x, access: %x\n", sharing[j… in test_create()