static void test_PSetupDestroyMonitorInfo(VOID) { HANDLE mi; SetLastError(0xdeadbeef); pPSetupDestroyMonitorInfo(NULL); /* lasterror is returned */ trace("returned with %u\n", GetLastError()); SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL); if (!mi && (GetLastError() == RPC_S_SERVER_UNAVAILABLE)) { win_skip("The service 'Spooler' is required for many tests\n"); return; } ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError()); if (!mi) return; SetLastError(0xdeadbeef); pPSetupDestroyMonitorInfo(mi); /* lasterror is returned */ trace("returned with %u\n", GetLastError()); /* Trying to destroy the handle twice crashes with native ntprint.dll */ if (0) { SetLastError(0xdeadbeef); pPSetupDestroyMonitorInfo(mi); trace(" with %u\n", GetLastError()); } }
static void test_PSetupDestroyMonitorInfo(VOID) { HANDLE mi; SetLastError(0xdeadbeef); pPSetupDestroyMonitorInfo(NULL); /* lasterror is returned */ trace("returned with %u\n", GetLastError()); SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL); ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError()); if (!mi) return; SetLastError(0xdeadbeef); pPSetupDestroyMonitorInfo(mi); /* lasterror is returned */ trace("returned with %u\n", GetLastError()); /* Try to destroy the handle twice crash with native ntprint.dll */ if (0) { SetLastError(0xdeadbeef); pPSetupDestroyMonitorInfo(mi); trace(" with %u\n", GetLastError()); } }
static void test_PSetupCreateMonitorInfo(VOID) { HANDLE mi; BYTE buffer[1024] ; SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL); ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError()); if (mi) pPSetupDestroyMonitorInfo(mi); memset(buffer, 0, sizeof(buffer)); SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(buffer, NULL, NULL); ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError()); if (mi) pPSetupDestroyMonitorInfo(mi); }
static void test_PSetupCreateMonitorInfo(VOID) { HANDLE mi; BYTE buffer[1024] ; SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL); if (!mi && (GetLastError() == RPC_S_SERVER_UNAVAILABLE)) { win_skip("The service 'Spooler' is required for many tests\n"); return; } ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError()); if (mi) pPSetupDestroyMonitorInfo(mi); memset(buffer, 0, sizeof(buffer)); SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(buffer, NULL, NULL); ok( mi != NULL, "got %p with %u (expected '!= NULL')\n", mi, GetLastError()); if (mi) pPSetupDestroyMonitorInfo(mi); }
static void test_PSetupEnumMonitor(VOID) { HANDLE mi; WCHAR buffer[MAX_PATH+2]; DWORD minsize = 0; DWORD size; DWORD res; DWORD index=0; SetLastError(0xdeadbeef); mi = pPSetupCreateMonitorInfo(NULL, NULL, NULL); if (!mi) { skip("PSetupCreateMonitorInfo\n"); return; } minsize = 0; SetLastError(0xdeadbeef); res = pPSetupEnumMonitor(mi, 0, NULL, &minsize); ok( !res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER) && (minsize > 0), "got %u with %u and %u (expected '0' with ERROR_INSUFFICIENT_BUFFER " "and '> 0')\n", res, GetLastError(), minsize); size = sizeof(buffer) / sizeof(buffer[0]); if ((minsize + 1) > size) { skip("overflow: %u\n", minsize); pPSetupDestroyMonitorInfo(mi); return; } if (0) { /* XP: ERROR_INVALID_PARAMETER, w2k: Crash */ SetLastError(0xdeadbeef); size = sizeof(buffer) / sizeof(buffer[0]); res = pPSetupEnumMonitor(NULL, 0, buffer, &size); ok( !res && (GetLastError() == ERROR_INVALID_PARAMETER), "got %u with %u (expected '0' with ERROR_INVALID_PARAMETER)\n", res, GetLastError()); } if (0) { /* XP: Crash, w2k: Success (how can that work?) */ SetLastError(0xdeadbeef); size = sizeof(buffer) / sizeof(buffer[0]); res = pPSetupEnumMonitor(mi, 0, NULL, &size); trace("got %u with %u and %u\n", res, GetLastError(), size); } if (0) { /* XP: ERROR_INVALID_PARAMETER, w2k: Crash */ SetLastError(0xdeadbeef); res = pPSetupEnumMonitor(mi, 0, buffer, NULL); ok( !res && (GetLastError() == ERROR_INVALID_PARAMETER), "got %u with %u (expected '0' with ERROR_INVALID_PARAMETER)\n", res, GetLastError()); } SetLastError(0xdeadbeef); size = minsize - 1; res = pPSetupEnumMonitor(mi, 0, buffer, &size); ok( !res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER), "got %u with %u and %u (expected '0' with ERROR_INSUFFICIENT_BUFFER)\n", res, GetLastError(), size); SetLastError(0xdeadbeef); size = minsize; res = pPSetupEnumMonitor(mi, 0, buffer, &size); ok( res, "got %u with %u and %u (expected '!= 0')\n", res, GetLastError(), size); SetLastError(0xdeadbeef); size = minsize + 1; res = pPSetupEnumMonitor(mi, 0, buffer, &size); ok( res, "got %u with %u and %u (expected '!= 0')\n", res, GetLastError(), size); /* try max. 20 monitors */ while (res && (index < 20)) { SetLastError(0xdeadbeef); buffer[0] = '\0'; size = sizeof(buffer) / sizeof(buffer[0]); res = pPSetupEnumMonitor(mi, index, buffer, &size); ok( res || (GetLastError() == ERROR_NO_MORE_ITEMS), "(%u) got %u with %u and %u (expected '!=0' or: '0' with " "ERROR_NO_MORE_ITEMS)\n", index, res, GetLastError(), size); if (res) index++; } pPSetupDestroyMonitorInfo(mi); }