home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / System / MorphOS / Developer / emulexamples / library / skeleton / libdata.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-02  |  579 b   |  31 lines

  1. #include <exec/types.h>
  2. #include <exec/tasks.h>
  3. #include <exec/ports.h>
  4. #include <exec/memory.h>
  5. #include <exec/lists.h>
  6. #include <exec/semaphores.h>
  7. #include <exec/execbase.h>
  8. #include <exec/alerts.h>
  9. #include <exec/libraries.h>
  10. #include <exec/interrupts.h>
  11. #include <exec/resident.h>
  12.  
  13. #include <emul/emulinterface.h>
  14. #include <emul/emulregs.h>
  15.  
  16. #include <ppcinline/exec.h>
  17.  
  18. #include <public/quark/quark.h>
  19. #include <public/proto/quark/syscall_protos.h>
  20.  
  21.  
  22. struct LibBase
  23. {
  24.     struct Library         Lib;
  25.     BPTR             SegList;
  26.     struct    ExecBase    *SBase;
  27. };
  28.  
  29. #define    SysBase        MyLibBase->SBase
  30.  
  31.