- Set a default PCM volume so that something can be heard when driver is
[AROS.git] / test / oop / intern.h
blobcc4cf7ee1d2a4bd2c72865ca55bcd8ce39489548
1 #ifndef INTERN_H
2 #define INTERN_H
3 /*
4 Copyright © 1997-98, The AROS Development Team. All rights reserved.
5 $Id$
7 Desc: Demo of new OOP system
8 Lang: english
9 */
11 #include "types.h"
13 #define CalcHash(id, ht_size) (id & ht_size)
15 struct Bucket
17 struct Bucket *Next;
18 ULONG MethodID;
19 APTR MethodFunc;
20 Class *mClass; /* This is to be able to skip class calls */
23 #endif /* INTERN_H */