home *** CD-ROM | disk | FTP | other *** search
- #ifndef RESOURCES_FILESYSRES_H
- #define RESOURCES_FILESYSRES_H
- /*
- ** $Filename: resources/filesysres.h $
- ** $Release: 2.04 Includes, V37.4 $
- ** $Revision: 36.4 $
- ** $Date: 90/05/03 $
- **
- ** FileSystem.resource description
- **
- ** (C) Copyright 1988-1991 Commodore-Amiga, Inc.
- ** All Rights Reserved
- */
-
- #ifndef EXEC_NODES_H
- #include "exec/nodes.h"
- #endif
- #ifndef EXEC_LISTS_H
- #include "exec/lists.h"
- #endif
- #ifndef DOS_DOS_H
- #include "dos/dos.h"
- #endif
-
- #define FSRNAME "FileSystem.resource"
-
- struct FileSysResource {
- struct Node fsr_Node;
- char *fsr_Creator;
- struct List fsr_FileSysEntries;
- };
-
- struct FileSysEntry {
- struct Node fse_Node;
-
- ULONG fse_DosType;
- ULONG fse_Version;
- ULONG fse_PatchFlags;
-
-
-
- ULONG fse_Type;
- CPTR fse_Task;
- BPTR fse_Lock;
- BSTR fse_Handler;
- ULONG fse_StackSize;
- LONG fse_Priority;
- BPTR fse_Startup;
- BPTR fse_SegList;
- BPTR fse_GlobalVec;
-
- };
-
- #endif
-