mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
19 lines
377 B
C
19 lines
377 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");
|
||
|
}
|