62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
compile insert rti_IDE_Msg_DeleteWarn_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 : January 2015
|
|
Purpose : Equates for use with the RTI_IDE_MSG_DELETEWARN dialog
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 01 Feb 16 Added MSGDELWARN_CREATEPARAM_TREEDELTEXT$
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTI_IDE_MSG_DELETEWARN_EQUATES_
|
|
#define _RTI_IDE_MSG_DELETEWARN_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // CREATE method CreateParam equates
|
|
* //
|
|
* // <1> Dialog Window Caption
|
|
* // <2> Dialog Title
|
|
* // <3> Dialog Message
|
|
* // <4> Show Tree-Delete
|
|
* // <5> X Pos ( Same as Msg() )
|
|
* // <6> Y Pos ( Same as Msg() )
|
|
* // <7> Tree-Delete Text
|
|
|
|
equ MSGDELWARN_CREATEPARAM_CAPTION$ to 1
|
|
equ MSGDELWARN_CREATEPARAM_TITLE$ to 2
|
|
equ MSGDELWARN_CREATEPARAM_MESSAGE$ to 3
|
|
equ MSGDELWARN_CREATEPARAM_SHOWTREEDEL$ to 4
|
|
equ MSGDELWARN_CREATEPARAM_X$ to 5
|
|
equ MSGDELWARN_CREATEPARAM_Y$ to 6
|
|
equ MSGDELWARN_CREATEPARAM_TREEDELTEXT$ to 7
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // Return Value
|
|
|
|
equ MSGDELWARN_RETVAL_DELETE$ to 1
|
|
equ MSGDELWARN_RETVAL_TREEDELETE$ to 2
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|