home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d952 / machv.lha / MachV / programmer.lha / headers / machlib.h < prev   
C/C++ Source or Header  |  1993-12-12  |  1KB  |  36 lines

  1. #ifndef MACHLIB_H
  2. #define MACHLIB_H
  3.  
  4. #define MT_LOCALS        0
  5. #define MT_GLOBALS        1
  6. #define MT_WILDCARDS    2
  7. #define MT_EXACT_MATCH    4
  8. #define MT_SLOPPY_MATCH    8
  9. #define MT_MATCH_NEXT    16
  10.  
  11. #define TASKNAME "LIST_TASK"
  12.  
  13. #define LIST_Dummy         (TAG_USER + 99)       // 0x80000063
  14. #define LIST_TaskInfo      (LIST_Dummy + 0x01)   // ptr to TaskInfo struct
  15. #define LIST_Type          (LIST_Dummy + 0x02)   // see below for types
  16. #define LIST_LeftEdge      (LIST_Dummy + 0x03)   // list left edge. def. -1
  17. #define LIST_TopEdge       (LIST_Dummy + 0x04)   // list top edge. def. -1
  18. #define LIST_Globals       (LIST_Dummy + 0x05)   // list + globals? def. TRUE
  19. #define LIST_AlarmsOnly    (LIST_Dummy + 0x06)   // list only alarms def. FALSE
  20. #define LIST_Title         (LIST_Dummy + 0x07)   // list title
  21. #define LIST_OkayString    (LIST_Dummy + 0x08)   // okay text
  22. #define LIST_CancelString  (LIST_Dummy + 0x09)   // cancel text
  23.  
  24. // Allowable tag values for LIST_Type
  25.  
  26. #define LIST_WINDOWS        0x1
  27. #define LIST_SCREENS        0x2
  28. #define LIST_MACRONAMES        0x4
  29. #define LIST_MACROALARMS    0x8
  30. #define LIST_CONFIGNAMES    0x10
  31. #define LIST_WIN_SCR_PRG    0x20
  32.  
  33.  
  34.  
  35. #endif
  36.