summaryrefslogtreecommitdiff
path: root/src/include/gm/call/manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gm/call/manager.h')
-rw-r--r--src/include/gm/call/manager.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/gm/call/manager.h b/src/include/gm/call/manager.h
new file mode 100644
index 0000000..49aafe7
--- /dev/null
+++ b/src/include/gm/call/manager.h
@@ -0,0 +1,14 @@
+#ifndef DEF_CALL_MANAGER_H
+#define DEF_CALL_MANAGER_H
+
+#include <gm/call.h>
+#include <gc/obj.h>
+
+Object c_open(_CHP, char *c);
+Object open(char *c); //calls c_open with object 1
+
+void c_registerSvc(char *name); //automatically calls with objecct id 0
+
+void c_logSvc(char *log, int level);
+
+#endif