diff options
Diffstat (limited to 'libobjc/objc/deprecated/objc_msg_sendv.h')
-rw-r--r-- | libobjc/objc/deprecated/objc_msg_sendv.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libobjc/objc/deprecated/objc_msg_sendv.h b/libobjc/objc/deprecated/objc_msg_sendv.h new file mode 100644 index 000000000..825d9a766 --- /dev/null +++ b/libobjc/objc/deprecated/objc_msg_sendv.h @@ -0,0 +1,12 @@ +/* The following types and functions are provided only for + backwards-compatibility and should not be used in new code. They + were deprecated in GCC 4.6 and will be removed in the next + release. */ +typedef void* retval_t; /* return value */ +typedef void(*apply_t)(void); /* function pointer */ +typedef union arglist { + char *arg_ptr; + char arg_regs[sizeof (char*)]; +} *arglist_t; /* argument frame */ + +objc_EXPORT retval_t objc_msg_sendv(id, SEL, arglist_t); |