added sysprog entities

This commit is contained in:
Infineon\StieberD
2024-03-25 15:17:34 -07:00
parent 600a8e1f61
commit 3a6a2b6b5b
1028 changed files with 171660 additions and 0 deletions

View File

@ -0,0 +1,35 @@
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
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////