home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 171.lha / SupLib / xmisc.h1 < prev   
Text File  |  1988-04-28  |  729b  |  41 lines

  1.  
  2. /*
  3.  * XMISC.H
  4.  */
  5.  
  6. #ifndef MYLIB_XMISC_H
  7. #define MYLIB_XMISC_H
  8.  
  9. #define GRAPHICS_LIB        0x0001L
  10. #define INTUITION_LIB        0x0002L
  11. #define EXPANSION_LIB        0x0004L
  12. #define DISKFONT_LIB        0x0008L
  13. #define TRANSLATOR_LIB        0x0010L
  14. #define ICON_LIB        0x0020L
  15. #define MATH_LIB        0x0040L
  16. #define MATHTRANS_LIB        0x0080L
  17. #define MATHIEEEDOUBBAS_LIB 0x0100L
  18. #define MATHIEEESINGBAS_LIB 0x0200L
  19. #define LAYERS_LIB        0x0400L
  20. #define CLIST_LIB        0x0800L
  21. #define POTGO_LIB        0x1000L
  22. #define TIMER_LIB        0x2000L
  23. #define DRES_LIB        0x4000L
  24.  
  25. #define ADRLOCK struct _ADRLOCK
  26. #define XLIST struct _XLIST
  27.  
  28. ADRLOCK {
  29.     long    ad_Wait;
  30.     unsigned char  ad_Bits;
  31. };
  32.  
  33. XLIST {
  34.     XLIST *next;
  35.     XLIST **prev;
  36. };
  37.  
  38. #endif
  39.  
  40.  
  41.