Searched refs:hsecond (Results 1 – 1 of 1) sorted by relevance
/reactos/modules/rostests/winetests/kernel32/ |
H A D | heap.c | 89 HGLOBAL hsecond; in test_heap() local 281 ok(hsecond == gbl || (hsecond == NULL && GetLastError() == ERROR_NOT_ENOUGH_MEMORY), in test_heap() 291 ok(hsecond != NULL, in test_heap() 293 mem = GlobalLock(hsecond); in test_heap() 294 ok(mem == hsecond, "got %p (expected %p) @%ld\n", mem, hsecond, size); in test_heap() 295 GlobalFree(hsecond); in test_heap() 446 ok(hsecond == gbl || (hsecond == NULL && GetLastError() == ERROR_NOT_ENOUGH_MEMORY), in test_heap() 456 ok(hsecond != NULL, in test_heap() 458 mem = LocalLock(hsecond); in test_heap() 459 ok(mem == hsecond, "got %p (expected %p) @%ld\n", mem, hsecond, size); in test_heap() [all …]
|