home *** CD-ROM | disk | FTP | other *** search
- {$if not def EXEC_RESIDENT_H} CONST EXEC_RESIDENT_H=0;
-
- { *****************************************************************
- ** KickPascal-Include-Datei "exec/resident.h" zu Kickstart 3.0 **
- ***************************************************************** }
-
- TYPE p_Resident = ^Resident;
-
-
- TYPE Resident = RECORD;
- rt_MatchWord : Word;
- rt_MatchTag : p_Resident;
- rt_EndSkip : Ptr;
- rt_Flags : Byte;
- rt_Version : Byte;
- rt_Type : Byte;
- rt_Pri : Short;
- rt_Name : Str;
- rt_IdString : Str;
- rt_Init : Ptr;
- END;
-
- CONST
- RTC_MATCHWORD = $4AFC;
- RTF_AUTOINIT = $80;
- RTF_AFTERDOS = $4;
- RTF_SINGLETASK = $2;
- RTF_COLDSTART = $1;
-
- CONST
- RTW_NEVER = 0;
- RTW_COLDSTART = 1;
-
- {$endif}
-