mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +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");
|
||
|
}
|