added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / include / resources / filesysres.h
blob0d95ec489846bf04863734fa5c9e7fd857813160
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id: filesysres.h 14582 2007-05-19 23:47:21Z sonic $
4 */
6 #ifndef RESOURCES_FILESYSRES_H
7 #define RESOURCES_FILESYSRES_H
9 #include <exec/lists.h>
10 #include <dos/bptr.h>
12 #define FSRNAME "FileSystem.resource"
14 struct FileSysResource
16 struct Node fsr_Node;
17 char *fsr_Creator;
18 struct List fsr_FileSysEntries;
21 struct FileSysEntry
23 struct Node fse_Node;
24 ULONG fse_DosType;
25 ULONG fse_Version;
26 ULONG fse_PatchFlags;
27 ULONG fse_Type;
28 LONG fse_Task;
29 BPTR fse_Lock;
30 BSTR fse_Handler;
31 ULONG fse_StackSize;
32 LONG fse_Priority;
33 BPTR fse_Startup;
34 BPTR fse_SegList;
35 BPTR fse_GlobalVec;
38 #endif /* RESOURCES_FILESYSRES_H */