1 /* 2 * PROJECT: ReactOS HTML Application Host 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Forwards HTA application information to mshtml 5 * COPYRIGHT: Copyright 2017-2018 Jared Smudde(computerwhiz02@hotmail.com) 6 */ 7 8 #include <windef.h> 9 #include <winbase.h> 10 #include <winuser.h> 11 #include <mshtml.h> 12 13 extern DWORD WINAPI RunHTMLApplication(HINSTANCE hinst, HINSTANCE hPrevInst, LPSTR szCmdLine, int nCmdShow); 14 15 int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow) 16 { 17 return RunHTMLApplication(hInst, hPrevInst, cmdline, cmdshow); 18 } 19