Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:26:29

0001 /***************************************************************************
0002  * Copyright 1995 Network Computing Devices
0003  *
0004  * Permission to use, copy, modify, distribute, and sell this software and
0005  * its documentation for any purpose is hereby granted without fee, provided
0006  * that the above copyright notice appear in all copies and that both that
0007  * copyright notice and this permission notice appear in supporting
0008  * documentation, and that the name of Network Computing Devices 
0009  * not be used in advertising or publicity pertaining to distribution
0010  * of the software without specific, written prior permission.
0011  *
0012  * NETWORK COMPUTING DEVICES DISCLAIMs ALL WARRANTIES WITH REGARD TO 
0013  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 
0014  * AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES BE LIABLE 
0015  * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
0016  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN 
0017  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING 
0018  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
0019  **************************************************************************/
0020 
0021 #ifndef _RECORDCONST_H_
0022 #define _RECORDCONST_H_
0023 
0024 #define RECORD_NAME         "RECORD"
0025 #define RECORD_MAJOR_VERSION        1
0026 #define RECORD_MINOR_VERSION        13
0027 #define RECORD_LOWEST_MAJOR_VERSION 1
0028 #define RECORD_LOWEST_MINOR_VERSION 12
0029 
0030 #define XRecordBadContext       0   /* Not a valid RC */
0031 
0032 #define RecordNumErrors         (XRecordBadContext + 1)
0033 #define RecordNumEvents     0L
0034 
0035 /*
0036  * Constants for arguments of various requests
0037  */
0038 #define XRecordFromServerTime       0x01
0039 #define XRecordFromClientTime       0x02
0040 #define XRecordFromClientSequence   0x04
0041 
0042 #define XRecordCurrentClients       1
0043 #define XRecordFutureClients        2
0044 #define XRecordAllClients       3
0045 
0046 #define XRecordFromServer               0
0047 #define XRecordFromClient               1
0048 #define XRecordClientStarted            2
0049 #define XRecordClientDied               3
0050 #define XRecordStartOfData      4
0051 #define XRecordEndOfData        5
0052 
0053 
0054 #endif /* _RECORD_H_ */