mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
d55028d26f
svn path=/trunk/; revision=33818
18 lines
359 B
C
18 lines
359 B
C
#include "user32api.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"user32api", L"user32.dll");
|
|
}
|