home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / pascal / rehack / general / rolldice.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-27  |  573 b   |  21 lines

  1. //    File:            ROLLDICE.HPP
  2. //    Path:            ...\REHACK\GENERAL\ROLLDICE.HPP
  3. //    Version:        1.00
  4. //    Author:            V. James Krammes
  5. //    CIS Id:            75300,1663
  6. //    Created on:        23 June, 1993
  7. //    Modified on:    23 June, 1993
  8. //    Description:    This is the include file for the rollDice() function
  9. //                    that provides a prototype and defines the error
  10. //                    return value "badRollValue" (-32768, 0x8000)
  11. //    Tabs:            4
  12.  
  13. #if !defined _ROLLDICE_HPP
  14. #define _ROLLDICE_HPP            1.00
  15.  
  16. const int badRollValue = 0x8000;
  17.  
  18. int rollDice(const char far *specifier);
  19.  
  20. #endif                            // _ROLLDICE_HPP
  21.