home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / exec / resident.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  792 b   |  46 lines

  1. #ifndef EXEC_RESIDENT_H
  2. #define EXEC_RESIDENT_H
  3. /*
  4. ** $Filename: exec/resident.h $
  5. ** $Release: 2.04 Includes, V37.4 $
  6. ** $Revision: 36.8 $
  7. ** $Date: 90/11/01 $
  8. **
  9. ** Resident/ROMTag stuff. Used to identify and initialize code modules.
  10. **
  11. ** (C) Copyright 1985-1991 Commodore-Amiga, Inc.
  12. ** All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include "exec/types.h"
  17. #endif 
  18.  
  19.  
  20. struct Resident {
  21.  UWORD rt_MatchWord; 
  22.  struct Resident *rt_MatchTag; 
  23.  APTR rt_EndSkip; 
  24.  UBYTE rt_Flags; 
  25.  UBYTE rt_Version; 
  26.  UBYTE rt_Type; 
  27.  BYTE rt_Pri; 
  28.  char *rt_Name; 
  29.  char *rt_IdString; 
  30.  APTR rt_Init; 
  31. };
  32.  
  33. #define RTC_MATCHWORD 0x4AFC 
  34.  
  35. #define RTF_AUTOINIT (1<<7) 
  36. #define RTF_AFTERDOS (1<<2)
  37. #define RTF_SINGLETASK (1<<1)
  38. #define RTF_COLDSTART (1<<0)
  39.  
  40.  
  41.  
  42. #define RTW_NEVER 0
  43. #define RTW_COLDSTART 1
  44.  
  45. #endif 
  46.