home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk22
/
dir08
/
f013040.re_
/
f013040.re
Wrap
Text File
|
1996-04-02
|
3KB
|
79 lines
/*----------------------------------------------------------------------+
| |
| Copyright (1995) Bentley Systems, Inc., All rights reserved. |
| |
| "AccuDraw", "MicroStation", "MDL", and "MicroCSL" are trademarks of |
| Bentley Systems, Inc. |
| |
| Limited permission is hereby granted to reproduce and modify this |
| copyrighted material provided that the resulting code is used only in |
| conjunction with Bentley Systems products under the terms of the |
| license agreement provided therein, and that this notice is retained |
| in its entirety in any such reproduction or modification. |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| adrwdemo.h Adrwdemo header file |
| |
+----------------------------------------------------------------------*/
#if !defined (__adrwdH__)
#define __adrwdH__
/*----------------------------------------------------------------------+
| |
| Include Files |
| |
+----------------------------------------------------------------------*/
#define DIALOGID_Pal 1
/*----------------------------------------------------------------------+
| |
| Item IDs |
| |
+----------------------------------------------------------------------*/
#define TOGGLEID_ShowAxes 1
#define TOGGLEID_UseCPlane 2
/*----------------------------------------------------------------------+
| |
| Message List ID's |
| |
+----------------------------------------------------------------------*/
#define MSGLIST_commands 0
#define MSG_cmdLine 1
#define MSG_cmdCircle 2
#define MSG_cmdRect 3
#define MSG_cmdRect2 4
#define MSG_cmdChange 5
#define MSGLIST_prompts 100
#define MSG_promptEnterPoint 101
#define MSG_promptAcceptReject 102
/*----------------------------------------------------------------------+
| |
| Palette Definitions |
| |
+----------------------------------------------------------------------*/
#define ICONCMDFRAMEID_Frame 1
#define ICONCMDID_Line 1
#define ICONCMDID_Circle 2
#define ICONCMDID_Rectangle 3
#define ICONCMDID_Rectangle2 4
#define ICONCMDID_ChangeCircle 5
/*----------------------------------------------------------------------+
| |
| Local Structure Definitions |
| |
+----------------------------------------------------------------------*/
typedef struct adrwdemoinfo
{
int showAxes;
int useCPlane;
} AdrwdemoInfo;
#endif /* !defined (__adrwdH__) */