home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / psion / opp16f_zip / INCLUDE / SDK / MATCHER.OPH < prev    next >
Encoding:
Text File  |  1995-12-21  |  560 b   |  40 lines

  1. #define MATCHER_OPH
  2.  
  3. #ifndef VARRAY_OPH
  4. #include <sdk\varray>
  5. #endif
  6.  
  7. /* Constants for matcher */
  8.  
  9. #define IM_NEW_LEN 1
  10. #define IM_NEW_DISPLAY 2
  11. #define IM_NO_CHANGE 3
  12.  
  13. /* Property of matcher */
  14.  
  15. STRUCT PRS_MATCHER
  16.     ptyped%
  17.     plen%
  18. ENDS
  19.  
  20. STRUCT PR_MATCHER
  21.     root#(SIZEOF(PRS_ROOT))
  22.     matcher#(SIZEOF(PRS_MATCHER))
  23. ENDS
  24.  
  25. /* Property of vmatcher */
  26.  
  27. STRUCT PRS_VMATCHER
  28.     va%
  29.     index%
  30.     first%
  31.     last%
  32.     txtoff%
  33. ENDS
  34.  
  35. STRUCT PR_VMATCHER
  36.     root#(SIZEOF(PRS_ROOT))
  37.     matcher#(SIZEOF(PRS_MATCHER))
  38.     vmatcher#(SIZEOF(PRS_VMATCHER))
  39. ENDS
  40.