69 lines
2.2 KiB
Plaintext
69 lines
2.2 KiB
Plaintext
compile insert reposix_Equates
|
|
/*
|
|
** Copyright (C) 1992-2015 Revelation Software Inc. All Rights Reserved **
|
|
|
|
This insert 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 : Breanna Anderson
|
|
Date : July 2, 1993
|
|
Purpose : Repository indexing system equates
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 12 Jun 15 Updated for v10, Added UPDATED indexing constants
|
|
mtr 12 Dec 02 Increased Max-Block_Size by 2 orders of magnitude
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _REPOSIX_EQUATES_
|
|
#define _REPOSIX_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
equ SYSREPOSIX_FILE$ to "SYSREPOSIX"
|
|
equ SYSREPOSIX_TEMP_FILE$ to "SYSREPOSIX_TEMP"
|
|
|
|
equ REPIX_INDEX_COUNT$ to 9
|
|
|
|
* // index names
|
|
|
|
equ REPIX_APP_TYPE_CLASS$ to "ATC"
|
|
equ REPIX_APP_TYPE_FLAG$ to "ATF"
|
|
equ REPIX_APP_TYPE$ to "ATX"
|
|
equ REPIX_APP$ to "AXX"
|
|
|
|
equ REPIX_TYPE_BY_APP$ to "TBA"
|
|
equ REPIX_CLASS_BY_TYPE$ to "CTA"
|
|
equ REPIX_COL_BY_TABLE$ to "CBT"
|
|
|
|
equ REPIX_UPDATED_YEAR$ to "AUY"
|
|
equ REPIX_UPDATED_DATE$ to "AUD"
|
|
|
|
|
|
equ SWAP_TOKEN$ to "~"
|
|
|
|
*---
|
|
* MTR 12-12-02 Increased Max-Block_Size by 2 orders of magnitude
|
|
*---
|
|
equ MAX_BLOCK_SIZE$ to 3276800
|
|
|
|
|
|
equ OVERFLOW_EXT$ to ".RIX"
|
|
|
|
* // lockval = sc_appid<1> : REPOSIX_LOCK$
|
|
equ REPOSIX_LOCK$ to "REPOSIX"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|