summaryrefslogtreecommitdiff
path: root/libobjcl.h
blob: 0d2f055a0b9f3ff68fdb5ed9fa7a9902825a8e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);