SFS moved to core
[AROS-Contrib.git] / ScalosV2 / TableClass.h
blob9ebc3ebcab740f2705ef7d0d31c5d7428e07b38a
1 // :ts=4 (Tabsize)
3 /*
4 ** Amiga Workbench® Replacement
5 **
6 ** (C) Copyright 1999,2000 Aliendesign
7 ** Stefan Sommerfeld, Jörg Rebenstorf
8 **
9 ** Redistribution and use in source and binary forms are permitted provided that
10 ** the above copyright notice and this paragraph are duplicated in all such
11 ** forms and that any documentation, advertising materials, and other
12 ** materials related to such distribution and use acknowledge that the
13 ** software was developed by Aliendesign.
14 ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
15 ** WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
16 ** MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 // we need to export our struct instance data because maintask needs its size
21 struct TableInst
23 struct MinList list;
24 ULONG count;
25 struct TableNode *curnode;
28 struct TableNode
30 struct MinNode node;
31 ULONG Attr;
32 ULONG Type;
33 ULONG Flags;
34 ULONG Size;
35 char Name;