summaryrefslogtreecommitdiffstats
path: root/objects/log-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/log-object.h')
-rw-r--r--objects/log-object.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/objects/log-object.h b/objects/log-object.h
deleted file mode 100644
index 9893bc5..0000000
--- a/objects/log-object.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef _LOG_OBJECT_H_
-#define _LOG_OBJECT_H_
-
-#include <Python.h>
-#include "base-objects.h"
-
-/* forward */
-struct _LOG_REC;
-
-typedef struct
-{
- PyIrssiFinal_HEAD(struct _LOG_REC)
-} PyLog;
-
-extern PyTypeObject PyLogType;
-
-int log_object_init(void);
-PyObject *pylog_new(void *log);
-#define pylog_check(op) PyObject_TypeCheck(op, &PyLogType)
-
-#endif