30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| compile insert Logical
 | |
| /*
 | |
|    ** Copyright (C) 2012 Revelation Software Inc. All Rights Reserved **
 | |
|    
 | |
|    Amended  Date         Reason
 | |
|    =======  ====         ======
 | |
|    Mr C     18 Sept 12   Added header guards so this insert can be nested.
 | |
|    
 | |
| */
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #IFNDEF _LOGICAL_
 | |
| #DEFINE _LOGICAL_
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
|    equ OTHERWISE$   to 1
 | |
|    equ TRUE$        to 1
 | |
|    equ FALSE$       to 0
 | |
|    equ YES$         to 1
 | |
|    equ NO$          to 0
 | |
|    Equ NULL$        to ""
 | |
| 
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #ENDIF
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 |