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

  1. #ifndef RESOURCES_FILESYSRES_H
  2. #define RESOURCES_FILESYSRES_H
  3. /*
  4. ** $Filename: resources/filesysres.h $
  5. ** $Release: 2.04 Includes, V37.4 $
  6. ** $Revision: 36.4 $
  7. ** $Date: 90/05/03 $
  8. **
  9. ** FileSystem.resource description
  10. **
  11. ** (C) Copyright 1988-1991 Commodore-Amiga, Inc.
  12. ** All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_NODES_H
  16. #include "exec/nodes.h"
  17. #endif
  18. #ifndef EXEC_LISTS_H
  19. #include "exec/lists.h"
  20. #endif
  21. #ifndef DOS_DOS_H
  22. #include "dos/dos.h"
  23. #endif
  24.  
  25. #define FSRNAME "FileSystem.resource"
  26.  
  27. struct FileSysResource {
  28.  struct Node fsr_Node; 
  29.  char *fsr_Creator; 
  30.  struct List fsr_FileSysEntries; 
  31. };
  32.  
  33. struct FileSysEntry {
  34.  struct Node fse_Node; 
  35.  
  36.  ULONG fse_DosType; 
  37.  ULONG fse_Version; 
  38.  ULONG fse_PatchFlags; 
  39.  
  40.  
  41.  
  42.  ULONG fse_Type; 
  43.  CPTR fse_Task; 
  44.  BPTR fse_Lock; 
  45.  BSTR fse_Handler; 
  46.  ULONG fse_StackSize; 
  47.  LONG fse_Priority; 
  48.  BPTR fse_Startup; 
  49.  BPTR fse_SegList; 
  50.  BPTR fse_GlobalVec; 
  51.  
  52. };
  53.  
  54. #endif 
  55.