//////////////////////////////////////////////////////// // Filename: Constants.h // // Name: Global Constants Declarations // // // // AUTHOR: Lucas Scharf, Jan 24, 1998 // // // // REVISIONS: None // // VERSION: 0.00 // //////////////////////////////////////////////////////// //////////////////////////////////////////////////////// // Multiple Inclusion Protection // //////////////////////////////////////////////////////// #ifndef CONSTANTS_H #define CONSTANTS_H //////////////////////////////////////////////////////// // Global constants declarations // //////////////////////////////////////////////////////// //-- Strings -- const StringLength = 255; //Maximum number of chars allowed in a string const null=0; //Null value //-- Keys -- const KEY_ASCII_ESC = 27; //ASCII code for the ESC key const KEY_ASCII_ENTER = 13; //ASCII code for the Enter key const KEY_ASCII_BACKSPACE = 8; //ASCII code for the backspace key //-- Root Entry Index stuff -- const ROOTENTRYINDEX = -1; //The entry index of the root folder const ROOTPARENTENTRYINDEX = -2;//The entry index of the parent of the root folder #endif