ReactOS 0.4.15-dev-7918-g2a2556c
main.c
Go to the documentation of this file.
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
13extern DWORD WINAPI RunHTMLApplication(HINSTANCE hinst, HINSTANCE hPrevInst, LPSTR szCmdLine, int nCmdShow);
14
15int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow)
16{
17 return RunHTMLApplication(hInst, hPrevInst, cmdline, cmdshow);
18}
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow)
Definition: main.c:8
DWORD WINAPI RunHTMLApplication(HINSTANCE hinst, HINSTANCE hPrevInst, LPSTR szCmdLine, int nCmdShow)
HINSTANCE hInst
Definition: dxdiag.c:13
unsigned long DWORD
Definition: ntddk_ex.h:95
static HINSTANCE hinst
Definition: edit.c:551
TCHAR * cmdline
Definition: stretchblt.cpp:32
#define WINAPI
Definition: msvc.h:6
char * LPSTR
Definition: xmlstorage.h:182