Updated PCI IDs to latest snapshot.
[tangerine.git] / test / OOPDemos / include / sysdep / hashed_methods.h
blobb1d69acd751cee89aff5e6a71d3f32535d36c51e
1 #ifndef HASHED_METHODS_H
2 #define HASHED_METHODS_H
4 /*
5 Copyright © 1997-98, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Demo of new OOP system
9 Lang: english
12 #include "types.h"
14 struct MethodBucket
16 struct MethodBucket *Next;
17 ULONG MethodID;
18 IPTR (*MethodFunc)();
19 Class *mClass;
23 struct InterfaceDescr
25 IPTR (**MethodTable)();
26 ULONG InterfaceID;
27 ULONG NumMethods;
30 #endif /* HASHED_METHODS_H */