repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated PCI IDs to latest snapshot.
[tangerine.git]
/
test
/
OOPDemos
/
include
/
sysdep
/
hashed_methods.h
blob
b1d69acd751cee89aff5e6a71d3f32535d36c51e
1
#ifndef HASHED_METHODS_H
2
#define HASHED_METHODS_H
3
4
/*
5
Copyright © 1997-98, The AROS Development Team. All rights reserved.
6
$Id$
7
8
Desc: Demo of new OOP system
9
Lang: english
10
*/
11
12
#include
"types.h"
13
14
struct
MethodBucket
15
{
16
struct
MethodBucket
*
Next
;
17
ULONG MethodID
;
18
IPTR
(*
MethodFunc
)();
19
Class
*
mClass
;
20
21
};
22
23
struct
InterfaceDescr
24
{
25
IPTR
(**
MethodTable
)();
26
ULONG InterfaceID
;
27
ULONG NumMethods
;
28
};
29
30
#endif
/* HASHED_METHODS_H */