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.
13 lines
390 B
13 lines
390 B
#ifndef _IEDDE_H
|
|
#define _IEDDE_H
|
|
|
|
BOOL IEDDE_Initialize(void);
|
|
void IEDDE_Uninitialize(void);
|
|
void IEDDE_AutomationStarted(void);
|
|
BOOL IEDDE_RunDelayedExecute();
|
|
HRESULT IEDDE_BeforeNavigate(LPCWSTR pwszURL, BOOL *pfCanceled);
|
|
HRESULT IEDDE_AfterNavigate(LPCWSTR pwszURL, HWND hwnd);
|
|
BOOL IEDDE_NewWindow(HWND hwnd);
|
|
BOOL IEDDE_WindowDestroyed(HWND hwnd);
|
|
|
|
#endif //_IEDDE_H
|