home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / pOSxA.lzx / pOSxA / exec / resident.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-12  |  748 b   |  34 lines

  1. #ifndef    EXEC_RESIDENT_H
  2. #define    EXEC_RESIDENT_H
  3.  
  4. /*******************************************************************
  5.  pOS / Amiga adapt
  6. *******************************************************************/
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11. #ifndef __INC_POS_PEXEC_RESIDENT_H
  12. #include <p:pExec/Resident.h>
  13. #endif
  14.  
  15. struct Resident
  16. {
  17.   UWORD            rt_MatchWord;
  18.   struct Resident *rt_MatchTag;
  19.   APTR             rt_EndSkip;
  20.   ULONG            rt_Flags;
  21.   UWORD            rt_Version;
  22.   UWORD            rt_Revision;
  23.   UBYTE            rt_Type;
  24.   SBYTE            rt_Pri;
  25.   char            *rt_Name;
  26.   char            *rt_IdString;
  27.   APTR             rt_Init;
  28.   ULONG           *rt_Describe;
  29. };
  30.  
  31.  
  32.  
  33. #endif    /* EXEC_RESIDENT_H */
  34.