home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 032.lha / include / exec / resident.g < prev    next >
Text File  |  1987-05-16  |  564b  |  31 lines

  1. type
  2.     Resident_t = struct {
  3.     uint rt_MatchWord;
  4.     *Resident_t rt_MatchTag;
  5.     *byte rt_EndSkip;
  6.     ushort rt_Flags;
  7.     ushort rt_Version;
  8.     ushort rt_Type;
  9.     short rt_Pri;
  10.     *char rt_Name;
  11.     *char rt_IdString;
  12.     *byte rt_Init;
  13.     };
  14.  
  15. uint
  16.     RTC_MATCHWORD = 0x4AFC;
  17.  
  18. ushort
  19.     RTF_AUTOINIT  = 1 << 7,
  20.     RTF_COLDSTART = 1 << 0,
  21.  
  22.     RTM_WHEN      = 3,
  23.     RTM_NEVER      = 0,
  24.     RTM_COLDSTART = 1;
  25.  
  26. extern
  27.     FindResident(*char name)*Resident_t,
  28.     InitCode(ulong startClass, version)void,
  29.     InitResident(*Resident_t res; *SegList_t seglist)void,
  30.     SumKickData()void;
  31.