repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Belarusian
[AROS.git]
/
test
/
oop
/
intern.h
blob
cc4cf7ee1d2a4bd2c72865ca55bcd8ce39489548
1
#ifndef INTERN_H
2
#define INTERN_H
3
/*
4
Copyright © 1997-98, The AROS Development Team. All rights reserved.
5
$Id$
6
7
Desc: Demo of new OOP system
8
Lang: english
9
*/
10
11
#include
"types.h"
12
13
#define CalcHash(id, ht_size) (id & ht_size)
14
15
struct
Bucket
16
{
17
struct
Bucket
*
Next
;
18
ULONG MethodID
;
19
APTR MethodFunc
;
20
Class
*
mClass
;
/* This is to be able to skip class calls */
21
};
22
23
#endif
/* INTERN_H */