home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / exec / resident.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  724 b   |  35 lines

  1. {$if not def EXEC_RESIDENT_H} CONST EXEC_RESIDENT_H=0;
  2.  
  3. { *****************************************************************
  4.   ** KickPascal-Include-Datei "exec/resident.h" zu Kickstart 3.0 **
  5.   ***************************************************************** }
  6.  
  7. TYPE p_Resident = ^Resident;
  8.  
  9.  
  10. TYPE Resident = RECORD;
  11.  rt_MatchWord : Word;
  12.  rt_MatchTag  : p_Resident;
  13.  rt_EndSkip   : Ptr;
  14.  rt_Flags     : Byte;
  15.  rt_Version   : Byte;
  16.  rt_Type      : Byte;
  17.  rt_Pri       : Short;
  18.  rt_Name      : Str;
  19.  rt_IdString  : Str;
  20.  rt_Init      : Ptr;
  21. END;
  22.  
  23. CONST
  24.  RTC_MATCHWORD  = $4AFC;
  25.  RTF_AUTOINIT   = $80;
  26.  RTF_AFTERDOS   = $4;
  27.  RTF_SINGLETASK = $2;
  28.  RTF_COLDSTART  = $1;
  29.  
  30. CONST
  31.  RTW_NEVER     = 0;
  32.  RTW_COLDSTART = 1;
  33.  
  34. {$endif}
  35.