38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
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
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|