mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
779 B
30 lines
779 B
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1995 **
|
|
//*********************************************************************
|
|
|
|
//
|
|
// RUNIE.H - Header file for starting HTML viewer window
|
|
//
|
|
|
|
// HISTORY:
|
|
//
|
|
// 10/18/95 jeremys Created.
|
|
//
|
|
|
|
#ifndef _RUNIE_H_
|
|
#define _RUNIE_H_
|
|
|
|
typedef struct tagRUNHTMLPARAMS{
|
|
LPSTR lpszCmdLine;
|
|
int nCmdShow;
|
|
HWND * pHwndMain; // pointer to receive handle of new window
|
|
PINST pinst;
|
|
} RUNHTMLPARAMS;
|
|
|
|
DECLARE_STANDARD_TYPES(RUNHTMLPARAMS);
|
|
|
|
DWORD WINAPI RunInternetExplorer(RUNHTMLPARAMS * pRunHTMLParams);
|
|
void TerminateFrameInstance(PINST pinst);
|
|
|
|
#endif // _RUNIE_H_
|