56 lines
2.1 KiB
Plaintext
56 lines
2.1 KiB
Plaintext
compile insert RTI_EVENTSTACK_EQUATES
|
|
/*
|
|
Copyright (c) 1992-2020 Revelation Software. All rights reserved.
|
|
|
|
Author Agent C
|
|
Date 03 Apr 2014
|
|
Purpose Constant definition module for use with the EventStack
|
|
|
|
Comments
|
|
========
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 31 Aug 17 Added EVS_POS_NP_HANDLER$ and EVS_POS_NP_RETVAL$
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTI_EVENTSTACK_EQUATES_
|
|
#define _RTI_EVENTSTACK_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// OIEventStack@ item equates:
|
|
//
|
|
// <0,1> ControlID
|
|
// <0,2> AppID
|
|
// <0,3> ReposType
|
|
// <0,4> WorkControlID
|
|
// <0,5> ControlType
|
|
// <0,6> EventName
|
|
// <0,7> GenericLevel
|
|
// <0,8> EventStatus
|
|
// <0,9> GenericAppID
|
|
// <0,10> QuickEvent Priority flag
|
|
// <0,11> QuickEvent handler
|
|
// <0,12> QuickEvent return value
|
|
|
|
equ EVS_POS_CONTROL_ID$ to 1
|
|
equ EVS_POS_APP_ID$ to 2
|
|
equ EVS_POS_REPOS_TYPE$ to 3
|
|
equ EVS_POS_WORK_CONTROL_ID$ to 4
|
|
equ EVS_POS_CONTROL_TYPE$ to 5
|
|
equ EVS_POS_EVENT_NAME$ to 6
|
|
equ EVS_POS_GENERIC_LEVEL$ to 7
|
|
equ EVS_POS_EVENT_STATUS$ to 8
|
|
equ EVS_POS_GENERIC_APP_ID$ to 9
|
|
equ EVS_POS_NP_EXECUTED$ to 10
|
|
equ EVS_POS_NP_HANDLER$ to 11
|
|
equ EVS_POS_NP_RETVAL$ to 12
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|