7b51b0fe18564092d367b9eec48e4ffcdf1e3655
[reactos.git] / rostests / apitests / user32api / user32api.c
1 #include "user32api.h"
2
3 HINSTANCE g_hInstance;
4
5 BOOL
6 IsFunctionPresent(LPWSTR lpszFunction)
7 {
8 return TRUE;
9 }
10
11 int APIENTRY WinMain(HINSTANCE hInstance,
12 HINSTANCE hPrevInstance,
13 LPSTR lpCmdLine,
14 int nCmdShow)
15 {
16 g_hInstance = hInstance;
17 return TestMain(L"user32api", L"user32.dll");
18 }