mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +00:00
20 lines
337 B
C
20 lines
337 B
C
|
#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");
|
||
|
}
|