Fix cross compilation (e.g. on Darwin). Following changes to make.tmpl,
[AROS.git] / rom / oop / unused / proxy.h
blob8fd2911b31a9f165f5e4f2a0d9d437aeeb88fefa
1 #ifndef OOP_PROXY_H
2 #define OOP_PROXY_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Include file for proxy class
9 Lang: english
12 extern ULONG __OOPI_Proxy;
14 #define IID_Proxy "Proxy"
15 #define CLID_Proxy "proxyclass"
17 #define ProxyAttrBase (__IProxy)
20 enum {
21 aoProxy_RealObject = 0, /* The object we are a proxy for */
22 aoProxy_Port,
23 num_Proxy_Attrs
26 #define aProxy_RealObject (ProxyAttrBase + aoProxy_RealObject)
27 #define aProxy_Port (ProxyAttrBase + aoProxy_Port)
30 #endif /* OOP_PROXY_H */