54 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| compile insert FFS_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    ???
 | |
|    Date      ???
 | |
|    Purpose   Equates for use with the Fast Filing System (aka RTP65)
 | |
|    
 | |
|    
 | |
|    Comments
 | |
|    ========
 | |
|      
 | |
|    
 | |
|    Amended  Date       Reason
 | |
|    =======  ====       ======
 | |
|    Mr C     15 Oct 12  Moved from REV_BP     
 | |
|   
 | |
| */
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #ifndef _FFS_EQUATES_
 | |
| #define _FFS_EQUATES_
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| EQU FFS_NO_ERR$                 TO      0
 | |
| EQU FFS_TABLE_EXIST_ERR$        TO      1
 | |
| EQU FFS_TABLE_NOT_EXIST_ERR$    TO      2
 | |
| EQU FFS_TABLE_ALREADY_OPEN_ERR$ TO      3
 | |
| EQU FFS_REC_DNE_ERR$            TO      4
 | |
| EQU FFS_UNKNOWN_CODE$           TO      5
 | |
| 
 | |
| 
 | |
| EQU CREATE$ TO 0
 | |
| EQU OPEN$   TO 1
 | |
| EQU CLOSE$  TO 2
 | |
| EQU CLEAR$  TO 3
 | |
| EQU READ$   TO 4
 | |
| EQU WRITE$  TO 5
 | |
| EQU DELETE$ TO 6
 | |
| 
 | |
| EQU NEXT_METHOD$  TO 1
 | |
| EQU ARG_CNT$      TO 2
 | |
| 
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #endif
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 |