45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
compile insert SYSREPOSLOG_COL_EQUATES
|
|
/*
|
|
** Copyright (c) 1992-2016 Revelation Software. All rights reserved.**
|
|
|
|
Author ??
|
|
Date Pre-history
|
|
Purpose SYSREPOSLOG table column equates
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 30 Mar 16 Added Header Guards
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _SYSREPOSLOG_COL_EQUATES_
|
|
#define _SYSREPOSLOG_COL_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Key structure
|
|
equ SYSREPLOG_APPID$ to 1
|
|
equ SYSREPLOG_TYPEID$ to 2
|
|
equ SYSREPLOG_CLASSID$ to 3
|
|
equ SYSREPLOG_ENTITYID$ to 4
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Row structure
|
|
equ SYSREPLOG_TIMESTAMP$ to 1
|
|
equ SYSREPLOG_OPERATION$ to 2
|
|
equ SYSREPLOG_USERID$ to 3
|
|
equ SYSREPLOG_DESCRIPTION$ to 4
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|