aboutsummaryrefslogtreecommitdiff
path: root/libobjc/objc/message.h
diff options
context:
space:
mode:
authorKai Tietz <kai.tietz@onevision.com>2010-09-26 14:32:45 +0000
committerKai Tietz <ktietz@gcc.gnu.org>2010-09-26 16:32:45 +0200
commit7116b6ea5c1ed39cb2e52ceb192f583ad8e4f62b (patch)
treefbe3659629931937d021d3175cd2f6e0f11eac9f /libobjc/objc/message.h
parentd6f3358f66ce914aac92f73b41c8b7fa34a77069 (diff)
downloadgcc-7116b6ea5c1ed39cb2e52ceb192f583ad8e4f62b.zip
gcc-7116b6ea5c1ed39cb2e52ceb192f583ad8e4f62b.tar.gz
gcc-7116b6ea5c1ed39cb2e52ceb192f583ad8e4f62b.tar.bz2
sendmsg.c (get_imp): Remove inline.
2010-09-26 Kai Tietz <kai.tietz@onevision.com> * sendmsg.c (get_imp): Remove inline. (objc_msg_lookup): Likewise. (objc_get_uninstalled_dtable): Likewise. * encoding.c (objc_skip_type_qualifiers): Likewise. (objc_skip_offset): Likewise. * archive.c (__objc_write_object): Likewise (__objc_write_class): (__objc_write_selector): (objc_read_char): (objc_read_unsigned_char): (objc_read_short): (objc_read_unsigned_short): (objc_read_int): (objc_read_long): (__objc_read_nbyte_uint): (objc_read_unsigned_int): (objc_read_unsigned_long): * objc/objc-decls.h (obc_EXPORT): Remove dllexport for DLL_EXPORT case. (objc_EXPORT): Likewise. * objc/message.h (objc-decls.h): Add include. * objc/objc-api.h: Mark API by objc_EXPORT. * libobjc.def (__objc_responds_to): Removed. From-SVN: r164632
Diffstat (limited to 'libobjc/objc/message.h')
-rw-r--r--libobjc/objc/message.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libobjc/objc/message.h b/libobjc/objc/message.h
index 31ee33b..6d47636 100644
--- a/libobjc/objc/message.h
+++ b/libobjc/objc/message.h
@@ -31,6 +31,7 @@ extern "C" {
#endif
#include "objc.h"
+#include "objc-decls.h"
/* This file includes declarations of the messaging functions and types. */
@@ -41,7 +42,7 @@ typedef union arglist {
char arg_regs[sizeof (char*)];
} *arglist_t; /* argument frame */
-IMP objc_msg_lookup(id receiver, SEL op);
+objc_EXPORT IMP objc_msg_lookup(id receiver, SEL op);
/* TODO: Add the remaining messaging declarations from objc-api.h. */