home *** CD-ROM | disk | FTP | other *** search
- // commands.hpp
- // written by Gregory K. Miskin
- // COPYRIGHT (C) 1992. All Rights Reserved.
- // Gregory K. Miskin, Orem, Utah USA
-
- #ifndef _commands_hpp
- #define _commands_hpp
-
- #define SPACE 32
- #define TRUE 1
- #define FALSE 0
-
- #define CR 13
- #define LF 10
- #define FF 12
- #define BLANK 32
- #define COMMA 44
-
- extern ushort GeneralFlag;
-
- //*------------------------------------------------------------------------*/
- // name database field numbers
- //*------------------------------------------------------------------------*/
- const int nmFIRST_NAME = 1;
- const int nmLAST_NAME = 2;
- const int nmSTREET = 3;
- const int nmCITY = 4;
- const int nmSTATE = 5;
- const int nmZIP = 6;
-
- //*------------------------------------------------------------------------*/
- // TurboVision command constants
- //*------------------------------------------------------------------------*/
- const int cmAboutCmd = 100;
- const int cmChDirCmd = 101;
- const int cmDOS_Cmd = 102;
- const int cmSaveCmd = 103;
- const int cmBrowse = 104;
- const int cmRestore = 105;
- const int cmDelete = 106;
- const int cmNextRec = 107;
- const int cmPrevRec = 108;
- const int cmTop = 109;
- const int cmBottom = 110;
- const int cmClearScr = 111;
- const int cmSave = 112;
- const int cmEnd = 113;
-
- #endif
-