open-insight/SYSPROG/STPROCINS/RTI_IDE_NEW_EQUATES.txt
2024-03-25 15:17:34 -07:00

87 lines
3.5 KiB
Plaintext

compile insert rti_IDE_New_Equates
/*
** Copyright (C) 2012-2016 Revelation Software Inc. 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 : Captain C
Date : 15 March 2016
Purpose : Equates for use with the RTI_IDE_NEW dialog
Comments
========
Amended Date Reason
======= ==== ======
Mr C 01 Oct 17 Added createParam equates
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _RTI_IDE_NEW_EQUATES_
#define _RTI_IDE_NEW_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ IDE_NEW_UDP_FAMILYINFO$ to "@_$$_IDENEW_FAMILYINFO" ; // SYSTEM
equ IDE_NEW_UDP_CREATEOK$ to "@_$$_IDEOPEN_CREATEOK" ; // @window
equ IDE_NEW_UDP_REFRESHINFO$ to "@_$$_IDEOPEN_REFRESHINFO" ; // bzs 052217
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// CreateParam
//
// <1> m'd list of specific FAMILY IDs to load
// <2> @vm'd list of TYPE IDs to load
// <3> @vm/@svm'd list of CLASS IDs to load
//
// <2> and <3> form an AMV and are mutually exclusive with <1>, which takes
// preference.
equ IDE_NEW_CP_POS_FAMILYIDS$ to 1
equ IDE_NEW_CP_POS_TYPEIDS$ to 2
equ IDE_NEW_CP_POS_CLASSIDS$ to 3
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Cached type information structure (IDE_NEW_UDP_FAMILYINFO$)
//
// <1> @vm'd list of family IDs
// <2> @vm'd list of family descriptions
// <3> @vm'd list of family image info (@svm/@tm delimited)
// <4> @vm'd list of family APPNOTE IDs
// <5> @vm/@svm'd list of type/class IDs
// <6> @vm/@svm'd list of type/class descriptions
// <7> @vm/@svm'd list of type/class image info (@tm/@stm delimited)
// <8> @vm/@svm'd list of type/class DSN IDs
// <9> @vm/@svm'd list of type/class APPNOTE IDs
// <10> @vm/@svm'd list of type/class New tokens
// <11> @vm list of boolean show flags
equ IDE_NEW_FAM_ID$ to 1
equ IDE_NEW_FAM_DESC$ to 2
equ IDE_NEW_FAM_IMAGEINFO$ to 3
equ IDE_NEW_FAM_APPNOTE_ID$ to 4
equ IDE_NEW_FAM_TC_ID$ to 5
equ IDE_NEW_FAM_TC_DESC$ to 6
equ IDE_NEW_FAM_TC_IMAGEINFO$ to 7
equ IDE_NEW_FAM_TC_DSN_ID$ to 8
equ IDE_NEW_FAM_TC_APPNOTE_ID$ to 9
equ IDE_NEW_FAM_TC_NEW_TOKEN$ to 10
equ IDE_NEW_FAM_TC_SHOW$ to 11
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////