diff options
author | Alexis211 <alexis211@gmail.com> | 2010-04-07 11:37:21 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-04-07 11:37:21 +0200 |
commit | ee348973b0cb0f6481e4fd6e7494c63167c9759c (patch) | |
tree | a9f1cd82703aaeeefbf4cf449203881cfcafc0a5 /src/include/gm/call.h | |
parent | ca4f5906f284e60a7a59ca7450e3e09c4f9356e5 (diff) | |
download | TCE-ee348973b0cb0f6481e4fd6e7494c63167c9759c.tar.gz TCE-ee348973b0cb0f6481e4fd6e7494c63167c9759c.zip |
More work on manager
Diffstat (limited to 'src/include/gm/call.h')
-rw-r--r-- | src/include/gm/call.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/include/gm/call.h b/src/include/gm/call.h new file mode 100644 index 0000000..5c3849d --- /dev/null +++ b/src/include/gm/call.h @@ -0,0 +1,18 @@ +#ifndef DEF_CALL_H +#define DEF_CALL_H + +/* + * This file and all files in include/call/ define prototypes to helper functions for calling methods on objects. + */ + +#include <gc/obj.h> + +#define _CHP Object o, int block +#define _CHC if (block) request(o, &sr); else send_msg(o, &sr); + +int c_handleCheck(_CHP, int method); +int c_handleCheckA(_CHP, int* methods, int number); + +int c_nothing(_CHP); + +#endif |