Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / test / OOPDemos / include / sysdep / hashed_strings.h
blob1ae95becdc7b4f5754474656bf5357cf665684c8
1 #ifndef HASHED_STRINGS_H
2 #define HASHED_STRINGS_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 STRPTR MethodID;
18 IPTR (*MethodFunc)();
19 Class *mClass;
23 struct MethodDescr
25 IPTR (*MethodFunc)();
26 STRPTR MethodID;
29 struct InterfaceDescr
31 struct MethodDescr *MethodTable;
32 STRPTR InterfaceID;
33 ULONG NumMethods;
36 #endif /* HASHED_STRINGS_H */