mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:52:57 +00:00
- make apitest.c into a static lib to be used by different tests
- add a gdi32 api test, based on the one in the win32 folder - add a user32 api test - change type of test functions to int - implement a quick 'n dirty html api status output - uncomment NtGdiTransormPoints in w32kdll.def - add ASSERT1 macro (ASSERT is already used) - include some more headers svn path=/trunk/; revision=28169
This commit is contained in:
parent
342efc07e7
commit
58c6a293bc
30 changed files with 1217 additions and 24 deletions
19
rostests/apitests/gdi32api/gdi32api.c
Normal file
19
rostests/apitests/gdi32api/gdi32api.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include "gdi32api.h"
|
||||
|
||||
HINSTANCE g_hInstance;
|
||||
|
||||
BOOL
|
||||
IsFunctionPresent(LPWSTR lpszFunction)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int APIENTRY
|
||||
WinMain(HINSTANCE hInstance,
|
||||
HINSTANCE hPrevInstance,
|
||||
LPSTR lpCmdLine,
|
||||
int nCmdShow)
|
||||
{
|
||||
g_hInstance = hInstance;
|
||||
return TestMain(L"gdi32api", L"gdi32.dll");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue