home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / libraries / configvars.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  1.1 KB  |  63 lines

  1. #ifndef LIBRARIES_CONFIGVARS_H
  2. #define LIBRARIES_CONFIGVARS_H
  3. /*
  4. ** $Filename: libraries/configvars.h $
  5. ** $Release: 2.04 Includes, V37.4 $
  6. ** $Revision: 36.14 $
  7. ** $Date: 91/04/22 $
  8. **
  9. ** Software structures used by AutoConfig (tm) boards
  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. #ifndef EXEC_NODES_H
  20. #include "exec/nodes.h"
  21. #endif 
  22.  
  23. #ifndef LIBRARIES_CONFIGREGS_H
  24. #include "libraries/configregs.h"
  25. #endif 
  26.  
  27.  
  28. struct ConfigDev {
  29.  struct Node cd_Node;
  30.  UBYTE cd_Flags; 
  31.  UBYTE cd_Pad; 
  32.  struct ExpansionRom cd_Rom; 
  33.  APTR cd_BoardAddr; 
  34.  ULONG cd_BoardSize; 
  35.  UWORD cd_SlotAddr; 
  36.  UWORD cd_SlotSize; 
  37.  APTR cd_Driver; 
  38.  struct ConfigDev * cd_NextCD; 
  39.  ULONG cd_Unused[4]; 
  40. };
  41.  
  42.  
  43. #define CDB_SHUTUP 0 
  44. #define CDB_CONFIGME 1 
  45. #define CDB_BADMEMORY 2 
  46. #define CDB_PROCESSED 3 
  47.  
  48. #define CDF_SHUTUP 0x01
  49. #define CDF_CONFIGME 0x02
  50. #define CDF_BADMEMORY 0x04
  51. #define CDF_PROCESSED 0x08
  52.  
  53.  
  54. struct CurrentBinding {
  55.  struct ConfigDev * cb_ConfigDev; 
  56.  UBYTE * cb_FileName; 
  57.  UBYTE * cb_ProductString; 
  58.  UBYTE ** cb_ToolTypes; 
  59. };
  60.  
  61.  
  62. #endif 
  63.