home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsc / coolswitch / !CoolSwtch / h / Item < prev    next >
Text File  |  1995-07-01  |  922b  |  29 lines

  1. ; h.Item
  2.  
  3. ; Display list
  4.  
  5. DL              STRUC           r11
  6. Link            INT
  7. BBox            INT             4               ; Bounding box in work area coordinates
  8. SprName         CHAR            13              ; Name of sprite to display
  9. Caption         INT                             ; Pointer to caption text
  10. Handle          INT                             ; Client handle
  11. Flags           INT                             ; Various flags
  12.                 STREND
  13.  
  14. DL_Hot          *               1 :SHL: 0       ; Selected
  15. DL_WasHot       *               1 :SHL: 1
  16. DL_Lost         *               1 :SHL: 2
  17.  
  18. Caret           STRUC
  19. Window          INT                             ; -1 if not used
  20. Icon            INT
  21. X               INT
  22. Y               INT
  23. Height          INT
  24. Index           INT
  25. Time            INT                             ; monotonic time when used
  26.                 STREND
  27.  
  28.                 END
  29.