summaryrefslogtreecommitdiff
path: root/c/clientwrap.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-21 07:54:23 +0000
committerDana Jansens <danakj@orodu.net>2003-03-21 07:54:23 +0000
commita648c05a7a2608e7e909317f5afe8427a0ea0d68 (patch)
tree9a8355e87192adeec50ee7eaff227decc8af8ffd /c/clientwrap.h
parent474f689132d906a553bdc695d3c179652cbe8c53 (diff)
kill the c dir
Diffstat (limited to 'c/clientwrap.h')
-rw-r--r--c/clientwrap.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/c/clientwrap.h b/c/clientwrap.h
deleted file mode 100644
index b20ca914..00000000
--- a/c/clientwrap.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef __clientwrap_h
-#define __clientwrap_h
-
-#include <Python.h>
-
-struct Client;
-
-/* ClientWrap is a PyObject */
-typedef struct ClientWrap {
- PyObject_HEAD
- struct Client *client;
-} ClientWrap;
-
-void clientwrap_startup();
-void clientwrap_shutdown();
-
-PyObject *clientwrap_new(struct Client *client);
-
-#endif