summaryrefslogtreecommitdiffstats
path: root/objects/dcc-chat-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/dcc-chat-object.h')
-rw-r--r--objects/dcc-chat-object.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/objects/dcc-chat-object.h b/objects/dcc-chat-object.h
deleted file mode 100644
index 955e6be..0000000
--- a/objects/dcc-chat-object.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef _DCC_CHAT_OBJECT_H_
-#define _DCC_CHAT_OBJECT_H_
-
-#include <Python.h>
-#include "dcc-object.h"
-
-/* forward */
-struct CHAT_DCC_REC;
-
-typedef struct
-{
- PyDcc_HEAD(struct CHAT_DCC_REC)
-} PyDccChat;
-
-extern PyTypeObject PyDccChatType;
-
-PyObject *pydcc_chat_new(void *dcc);
-#define pydcc_chat_check(op) PyObject_TypeCheck(op, &PyDccChatType)
-int dcc_chat_object_init(void);
-
-#endif