51 lines
1.8 KiB
Plaintext
51 lines
1.8 KiB
Plaintext
compile insert RTI_IDE_PGO_STOPLIST_EQUATES
|
|
/*
|
|
** Copyright (C) 2012-2014 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 : mtr
|
|
Date : March 2018
|
|
Purpose : Equates for use with the RTI_IDE_PGO_STOPLIST dialog
|
|
|
|
Comments
|
|
========
|
|
|
|
("PGO" == Property Grid Options)
|
|
|
|
This dialog is used in the IDE Preferences to set the form designer control prefixes
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTI_IDE_PGO_STOPLIST_EQUATES_
|
|
#define _RTI_IDE_PGO_STOPLIST_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // CREATE method CreateParam equates
|
|
* //
|
|
* // <1> "Parent" property grid ID
|
|
* // <2> Property name that is being edited
|
|
* // <3> The items in the list
|
|
* // <4> The delimiter for the items
|
|
|
|
equ PGO_STOPLIST_CREATEPARAM_PROPGRID$ To 1
|
|
equ PGO_STOPLIST_CREATEPARAM_PROPNAME$ To 2
|
|
equ PGO_STOPLIST_CREATEPARAM_ITEMS$ To 3
|
|
equ PGO_STOPLIST_CREATEPARAM_DELIMITER$ To 4
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|