ReactOS 0.4.15-dev-7906-g1b85a5f
main.c
Go to the documentation of this file.
1#include <stdarg.h>
2#include <windef.h>
3#include <winbase.h>
4
5typedef int WINAPI DOWINMAIN(HMODULE hMod, LPSTR cmdline);
6
7int WINAPI
9 HINSTANCE hPrevInst,
11 int cmdshow)
12{
15 int ret = -1;
16
17 hModule = LoadLibraryA("hhctrl.ocx");
18 if (hModule)
19 {
20 doWinMain = (DOWINMAIN*)GetProcAddress(hModule, "doWinMain");
21 if (doWinMain)
23
25 }
26
27 return ret;
28}
int WINAPI DOWINMAIN(HMODULE hMod, LPSTR cmdline)
Definition: main.c:5
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow)
Definition: main.c:8
HMODULE hModule
Definition: animate.c:44
#define GetProcAddress(x, y)
Definition: compat.h:753
#define FreeLibrary(x)
Definition: compat.h:748
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
HINSTANCE hInst
Definition: dxdiag.c:13
int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine)
Definition: hhctrl.c:500
TCHAR * cmdline
Definition: stretchblt.cpp:32
int ret
#define WINAPI
Definition: msvc.h:6
char * LPSTR
Definition: xmlstorage.h:182