List.mui: Update entries count prior to range change
[AROS.git] / rom / hidds / base / storage / storage_intern.h
blobf09553d93fd3847058ac38e1a0d33b5e58e4a859
1 #ifndef HIDDSTORAGE_INTERN_H
2 #define HIDDSTORAGE_INTERN_H
4 #include <exec/libraries.h>
5 #include <dos/bptr.h>
6 #include <oop/oop.h>
7 #include <hidd/hidd.h>
8 #include <hidd/storage.h>
10 struct HIDDStorageData
14 struct class_static_data
16 struct Library *cs_OOPBase;
17 BPTR cs_SegList;
19 OOP_Class *oopclass;
20 OOP_Object *instance;
21 OOP_AttrBase hwAttrBase;
24 /* Library base */
26 struct HiddStorageIntBase
28 struct Library hsi_LibNode;
30 struct class_static_data hsi_csd;
33 #define CSD(x) (&((struct HiddStorageIntBase *)x->UserData)->hsi_csd)
35 #define __IHW (CSD(cl)->hwAttrBase)
37 #endif