mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
25 lines
492 B
C
25 lines
492 B
C
#include <stdarg.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
typedef int WINAPI DOWINMAIN(HMODULE hMod, LPSTR cmdline);
|
|
|
|
int WINAPI
|
|
WinMain(HINSTANCE hInst,
|
|
HINSTANCE hPrevInst,
|
|
LPSTR cmdline,
|
|
int cmdshow)
|
|
{
|
|
HMODULE hModule;
|
|
DOWINMAIN *doWinMain;
|
|
int ret = -1;
|
|
|
|
hModule = LoadLibraryA("hhctrl.ocx");
|
|
doWinMain = (DOWINMAIN*) GetProcAddress(hModule, "doWinMain");
|
|
|
|
ret = doWinMain(hInst, cmdline);
|
|
|
|
FreeLibrary(hModule);
|
|
|
|
return ret;
|
|
}
|