home *** CD-ROM | disk | FTP | other *** search
- //========================================================================
- // The following example routines have been provided by the Technical
- // Support staff at Borland International. They are provided as a
- // courtesy and not as part of a Borland product, and as such, are
- // provided without the assurance of technical support or any specific
- // guarantees.
- //========================================================================
- // Turbo Vision - Example of message passing
- //
- //------------------------------------------------------------------------
- //
- // cmds.h: Various commands used in the message system (menus, status line,
- // dialog boxes).
- //
- //========================================================================
-
-
- #ifndef _CMDS_H
- #define _CMDS_H
-
-
- extern int windowFlag;
-
- const unsigned short cmAboutCmd = 100;
- const unsigned short cmOpenCmd = 101;
- const unsigned short cmTechCmd = 102;
-
- const unsigned short nameHistoryId = 2000;
- const unsigned short extHistoryId = 2001;
-
- const unsigned short cmNewRecord = 1000;
-
- #endif
-