home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / SREC / MAIN.H_ / MAIN.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  837 b   |  31 lines

  1. /************************************************************
  2.  
  3.    Header file for SREC.C and PENAPP.C
  4.  
  5.  
  6. ************************************************************/
  7.  
  8. #ifndef _INC_MAIN
  9. #define _INC_MAIN
  10.  
  11. /******** Macros *********/
  12.  
  13. /* Unused(): Prevent CS 5.1 compiler warning messages.
  14. */
  15. #define Unused(x)    x     
  16.  
  17. /******** Constants *********/
  18.  
  19. /* These are recognizer-specific symbols (as indicated by the
  20. ** 0x7F00 hiword) for the sample recognizer. 
  21. */
  22. #define  syvDot      ((SYV)MAKELONG(0x1, 0x7F00))
  23. #define  syvEast     ((SYV)MAKELONG(0x2, 0x7F00))
  24. #define  syvSouth    ((SYV)MAKELONG(0x3, 0x7F00))
  25. #define  syvWest     ((SYV)MAKELONG(0x4, 0x7F00))
  26. #define  syvNorth    ((SYV)MAKELONG(0x5, 0x7F00))
  27.  
  28. #define  REC_NOPENUP  (REC_OEM-1)   /* Recognizer specific error */
  29.  
  30. #endif /* !_INC_MAIN */
  31.