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

  1. #define XEDIT_OPH
  2.  
  3. #ifndef LODGER_OPH
  4. #include <sdk\lodger>
  5. #endif
  6.  
  7. /* Constants for xedit */
  8.  
  9. #define XEDIT_MAX_LEN 8
  10.  
  11. /* Types for xedit */
  12.  
  13. STRUCT SE_XEDIT
  14.     pstr%
  15. ENDS
  16.  
  17. /* Property of xedit */
  18.  
  19. STRUCT PRS_XEDIT
  20.     current#
  21.     width#
  22.     data#(XEDIT_MAX_LEN+2)
  23. ENDS
  24.  
  25. STRUCT PR_XEDIT
  26.     root#(SIZEOF(PRS_ROOT))
  27.     win#(SIZEOF(PRS_WIN))
  28.     lodger#(SIZEOF(PRS_LODGER))
  29.     xedit#(SIZEOF(PRS_XEDIT))
  30. ENDS
  31.