php-src/ext/rpc/rpc.h
2002-03-15 13:10:35 +00:00

11 lines
348 B
C

#ifndef RPC_H
#define RPC_H
#define CONSTRUCTOR __construct
#define CONSTRUCTOR_FN ZEND_FN(__construct)
#define GET_INTERNAL(intern) GET_INTERNAL_EX(intern, object)
#define GET_INTERNAL_EX(intern, object) rpc_internal **intern; \
zend_hash_index_find(RPC_G(instance), object->value.obj.handle, (void **) &intern);
#endif