summaryrefslogtreecommitdiffstats
path: root/objects/irc-connect-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/irc-connect-object.h')
-rw-r--r--objects/irc-connect-object.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/objects/irc-connect-object.h b/objects/irc-connect-object.h
deleted file mode 100644
index 3f6cad4..0000000
--- a/objects/irc-connect-object.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef _IRC_CONNECT_OBJECT_H_
-#define _IRC_CONNECT_OBJECT_H_
-
-#include <Python.h>
-#include "connect-object.h"
-
-/* forward */
-struct _IRC_SERVER_CONNECT_REC;
-
-typedef struct
-{
- PyIrssi_HEAD(struct _IRC_SERVER_CONNECT_REC)
-} PyIrcConnect;
-
-extern PyTypeObject PyIrcConnectType;
-
-int irc_connect_object_init(void);
-PyObject *pyirc_connect_new(void *connect, int managed);
-#define pyirc_connect_check(op) PyObject_TypeCheck(op, &PyIrcConnectType)
-
-#endif