home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / tvision / mess1 / cmds.h next >
Encoding:
C/C++ Source or Header  |  1992-01-31  |  1.1 KB  |  34 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. //  Turbo Vision - Example of message passing
  9. //
  10. //------------------------------------------------------------------------
  11. //
  12. // cmds.h:  Various commands used in the message system (menus, status line,
  13. //          dialog boxes).
  14. //
  15. //========================================================================
  16.  
  17.  
  18. #ifndef _CMDS_H
  19. #define _CMDS_H
  20.  
  21.  
  22. extern int windowFlag;
  23.  
  24. const unsigned short cmAboutCmd     = 100;
  25. const unsigned short cmOpenCmd      = 101;
  26. const unsigned short cmTechCmd      = 102;
  27.  
  28. const unsigned short nameHistoryId  = 2000;
  29. const unsigned short extHistoryId   = 2001;
  30.  
  31. const unsigned short cmNewRecord    = 1000;
  32.  
  33. #endif
  34.