2011-02-24 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / libobjc / objc / deprecated / objc_msg_sendv.h
blob825d9a7661223cb6142233ec50f3db912661e8a5
1 /* The following types and functions are provided only for
2 backwards-compatibility and should not be used in new code. They
3 were deprecated in GCC 4.6 and will be removed in the next
4 release. */
5 typedef void* retval_t; /* return value */
6 typedef void(*apply_t)(void); /* function pointer */
7 typedef union arglist {
8 char *arg_ptr;
9 char arg_regs[sizeof (char*)];
10 } *arglist_t; /* argument frame */
12 objc_EXPORT retval_t objc_msg_sendv(id, SEL, arglist_t);