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

  1. #define ACLIST_OPH
  2.  
  3. #ifndef LODGER_OPH
  4. #include <sdk\lodger>
  5. #endif
  6.  
  7. #ifndef VARES_OPH
  8. #include <sdk\vares>
  9. #endif
  10.  
  11. /* Constants for smaclist */
  12.  
  13. #define SMACLIST_MAX_STRING 80
  14.  
  15. /* Types for smaclist */
  16.  
  17. STRUCT BUT_POS
  18.     width%
  19.     x%
  20. ENDS
  21.  
  22. STRUCT IN_ACLIST
  23.     rid%
  24. ENDS
  25.  
  26. /* Property of smaclist */
  27.  
  28. STRUCT PRS_SMACLIST
  29.     data%
  30.     pos%
  31.     totalwidth%
  32.     num%
  33.     lwidth%
  34. ENDS
  35.  
  36. STRUCT PR_SMACLIST
  37.     root#(SIZEOF(PRS_ROOT))
  38.     win#(SIZEOF(PRS_WIN))
  39.     lodger#(SIZEOF(PRS_LODGER))
  40.     smaclist#(SIZEOF(PRS_SMACLIST))
  41. ENDS
  42.  
  43. /* Types for aclist */
  44.  
  45. STRUCT PUSH_BUT
  46.     keycode%
  47.     str#(1)
  48. ENDS
  49.  
  50. /* Property of aclist */
  51.  
  52. STRUCT PRS_ACLIST
  53.     text%
  54.     width%
  55.     y1%
  56.     y2%
  57. ENDS
  58.  
  59. STRUCT PR_ACLIST
  60.     root#(SIZEOF(PRS_ROOT))
  61.     win#(SIZEOF(PRS_WIN))
  62.     lodger#(SIZEOF(PRS_LODGER))
  63.     smaclist#(SIZEOF(PRS_SMACLIST))
  64.     aclist#(SIZEOF(PRS_ACLIST))
  65. ENDS
  66.