home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk23
/
dir05
/
f017260.re_
/
f017260.re
Wrap
Text File
|
1996-04-02
|
2KB
|
60 lines
/*----------------------------------------------------------------------+
| |
| Copyright (1993-95) Bentley Systems, Inc., All rights reserved. |
| |
| "MicroStation" is a registered trademark and "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. |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| $Logfile: J:/mdl/examples/scrnsize/scrncmd.r_v $
| $Workfile: scrncmd.r $
| $Revision: 1.0 $
| $Date: 28 Jun 1995 14:38:30 $
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| Function - Command Table Resources |
| |
+----------------------------------------------------------------------*/
/*----------------------------------------------------------------------+
| |
| Include Files |
| |
+----------------------------------------------------------------------*/
#include <rscdefs.h>
#include <cmdclass.h>
/*----------------------------------------------------------------------+
| |
| Local Defines |
| |
+----------------------------------------------------------------------*/
#define CT_NONE 0
#define CT_MODAL 1
#define CT_MSG 2
/*----------------------------------------------------------------------+
| |
| Application command syntax |
| |
+----------------------------------------------------------------------*/
Table CT_MODAL =
{
{ 1, CT_MSG, INPUT, REQ, "OPENMODAL" },
};
Table CT_MSG =
{
{ 1, CT_NONE, INPUT, NONE, "DEF" },
{ 2, CT_NONE, INPUT, NONE, "SET" },
};