summaryrefslogtreecommitdiffstats
path: root/objects/ban-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/ban-object.h')
-rw-r--r--objects/ban-object.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/objects/ban-object.h b/objects/ban-object.h
deleted file mode 100644
index 59ec9e7..0000000
--- a/objects/ban-object.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _BAN_OBJECT_H_
-#define _BAN_OBJECT_H_
-
-#include <Python.h>
-#include "base-objects.h"
-
-typedef struct
-{
- PyIrssiFinal_HEAD(void)
-} PyBan;
-
-extern PyTypeObject PyBanType;
-
-int ban_object_init(void);
-PyObject *pyban_new(void *ban);
-#define pyban_check(op) PyObject_TypeCheck(op, &PyBanType)
-
-#endif