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,37 @@
compile insert COMPSTAT_EQUATES
/*
Copyright (c) 1992-2012 Revelation Software. All rights reserved.
* This program is proprietary and is not to be used by or disclosed
* to others, nor is it to be copied without written permission from
* Revelation Technologies, Inc.
Author Mr C
Date October 2012
Purpose Compiler status constants
Comments
========
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _COMPSTAT_EQUATES_
#define _COMPSTAT_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ COMPSTAT_ERR$ to 0 ; * // error occured in compilation - return codes as appropriate
equ COMPSTAT_NOCOMP$ to 1 ; * // No compilation was required - return last update time of source
equ COMPSTAT_COMP$ to 2 ; * // Compilation performed successfully - return last update time of source
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////