mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
20 lines
335 B
C
20 lines
335 B
C
|
#include "dciman32api.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"dciman32api", L"dciman32.dll");
|
||
|
}
|