home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / streams / stream / cmds.h next >
Encoding:
C/C++ Source or Header  |  1991-10-30  |  824 b   |  23 lines

  1. //========================================================================
  2. //  The following example routines have been provided by the Technical
  3. //  Support staff at Borland International.  They are provided as a
  4. //  courtesy and not as part of a Borland product, and as such, are
  5. //  provided without the assurance of technical support or any specific
  6. //  guarantees.
  7. //========================================================================
  8. //
  9. // cmds.h:  Various commands used in the message system (menus, status line,
  10. //          dialog boxes).
  11. //
  12.  
  13. #ifndef _CMDS_H
  14. #define _CMDS_H
  15.  
  16. const unsigned short cmAboutCmd   = 100;
  17. const unsigned short cmOpenCmd    = 200;
  18. const unsigned short cmFunkCmd    = 201;
  19. const unsigned short cmSaveCmd    = 202;
  20. const unsigned short cmRestoreCmd = 203;
  21.  
  22. #endif
  23.