/*=========================================================================== * * File: DL_Dos.H * Author: Dave Humphrey (uesp@m0use.net) * Created On: Monday, May 21, 2001 * * Contains DOS related definitions. * *=========================================================================*/ #ifndef __DL_DOS_H #define __DL_DOS_H /*=========================================================================== * * Begin Required Include Files * *=========================================================================*/ #include "dl_err.h" /*=========================================================================== * End of Required Include Files *=========================================================================*/ /*=========================================================================== * * Begin Function Prototypes * *=========================================================================*/ /* Inputs a value from stdin */ boolean DOSInputFloat (float& Value, const char* pPrompt); boolean DOSInputInt (int& Value, const char* pPrompt); boolean DOSInputLong (long& Value, const char* pPrompt); boolean DOSInputString (char* pInputBuffer, const size_t MaxSize, const char* pPrompt); /*=========================================================================== * End of Function Prototypes *=========================================================================*/ #endif /*=========================================================================== * End of File Dl_dos.H *=========================================================================*/