36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
compile insert msWin_WebBrowser_Equates
|
|
/*
|
|
** Copyright (C) 2014 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date Feb 2014
|
|
Purpose Equates for use with the MS WebBrowser control
|
|
|
|
Comments
|
|
========
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MSWIN_WEBBROWSER_EQUATES_
|
|
#define _MSWIN_WEBBROWSER_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ WB_READYSTATE_UNINITIALIZED$ to 0
|
|
equ WB_READYSTATE_LOADING$ to 1
|
|
equ WB_READYSTATE_LOADED$ to 2
|
|
equ WB_READYSTATE_INTERACTIVE$ to 3
|
|
equ WB_READYSTATE_COMPLETE$ to 4
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|