mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
7ad21a4425
- Convert win32k native api test to actual wine style api-tests - Hack around a bit with the win32k dlls, some renaming, etc. - Delete old apitest stuff svn path=/trunk/; revision=70458
58 lines
1.1 KiB
C
58 lines
1.1 KiB
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for NtUserEnumDisplayMonitors
|
|
* PROGRAMMERS:
|
|
*/
|
|
|
|
#include <win32nt.h>
|
|
|
|
ULONG gMonitorCount = 0;
|
|
HDC ghdcMonitor = 0;
|
|
RECT grcMonitor = {0};
|
|
|
|
BOOL
|
|
NTAPI
|
|
NtUserEnumDisplayMonitors1(
|
|
HDC hDC,
|
|
LPCRECT lprcClip,
|
|
MONITORENUMPROC lpfnEnum,
|
|
LPARAM dwData)
|
|
{
|
|
return (INT)Syscall(L"NtUserEnumDisplayMonitors", 4, &hDC);
|
|
}
|
|
|
|
BOOL CALLBACK
|
|
MonitorEnumProc(
|
|
HMONITOR hMonitor,
|
|
HDC hdcMonitor,
|
|
LPRECT lprcMonitor,
|
|
LPARAM dwData)
|
|
{
|
|
gMonitorCount++;
|
|
if (gMonitorCount == 1)
|
|
{
|
|
ghdcMonitor = hdcMonitor;
|
|
grcMonitor = *lprcMonitor;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
START_TEST(NtUserEnumDisplayMonitors)
|
|
{
|
|
BOOL ret;
|
|
|
|
// WILL crash!
|
|
// TEST(NtUserEnumDisplayMonitors1(NULL, NULL, NULL, 0) == 0);
|
|
|
|
ret = NtUserEnumDisplayMonitors(0, NULL, MonitorEnumProc, 0);
|
|
TEST(ret == TRUE);
|
|
TEST(gMonitorCount > 0);
|
|
TEST(ghdcMonitor == 0);
|
|
TEST(grcMonitor.left == 0);
|
|
TEST(grcMonitor.right > 0);
|
|
TEST(grcMonitor.top == 0);
|
|
TEST(grcMonitor.bottom > 0);
|
|
|
|
}
|