summaryrefslogtreecommitdiffstats
path: root/objects/notifylist-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/notifylist-object.h')
-rw-r--r--objects/notifylist-object.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/objects/notifylist-object.h b/objects/notifylist-object.h
deleted file mode 100644
index 9db6922..0000000
--- a/objects/notifylist-object.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _NOTIFYLIST_OBJECT_H_
-#define _NOTIFYLIST_OBJECT_H_
-
-#include <Python.h>
-#include "base-objects.h"
-
-typedef struct
-{
- PyIrssiFinal_HEAD(void)
-} PyNotifylist;
-
-extern PyTypeObject PyNotifylistType;
-
-int notifylist_object_init(void);
-PyObject *pynotifylist_new(void *notifylist);
-#define pynotifylist_check(op) PyObject_TypeCheck(op, &PyNotifylistType)
-
-#endif