summaryrefslogtreecommitdiff
path: root/libobjcl.h
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-08-02 21:04:10 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-08-02 21:04:10 +0200
commit714a595eb34406d75ce250477e7042c85c3ad95e (patch)
treefe108401b0266bb5874e17135d84db100cd45993 /libobjcl.h
Beginnings of an Objective C bridge.
darcs-hash:907cb9b5f058df6c6697bc71a309edeb976998ff
Diffstat (limited to 'libobjcl.h')
-rw-r--r--libobjcl.h22
1 files changed, 22 insertions, 0 deletions
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);