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
New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git]
/
test
/
oop
/
intern.h
blob
ba18110669dc0ba0fa89d4b77b081476d69cdaad
1
#ifndef INTERN_H
2
#define INTERN_H
3
/*
4
(C) 1997-98 AROS - The Amiga Research OS
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 */