From 714a595eb34406d75ce250477e7042c85c3ad95e Mon Sep 17 00:00:00 2001 From: Matthias Benkard Date: Thu, 2 Aug 2007 21:04:10 +0200 Subject: Beginnings of an Objective C bridge. darcs-hash:907cb9b5f058df6c6697bc71a309edeb976998ff --- libobjcl.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 libobjcl.h (limited to 'libobjcl.h') diff --git a/libobjcl.h b/libobjcl.h new file mode 100644 index 0000000..0d2f055 --- /dev/null +++ b/libobjcl.h @@ -0,0 +1,22 @@ +/* -*- mode: objc; coding: utf-8 -*- */ + +void +objcl_initialise_runtime (); + +void +objcl_shutdown_runtime (); + +void * +objcl_invoke_instance_method (void *receiver, + char *const method_name, + int argc, + ...); + +void * +objcl_invoke_class_method (void *class, + char *const method_name, + int argc, + ...); + +void * +objcl_find_class (char *const class_name); -- cgit v1.2.3