summaryrefslogtreecommitdiffstats
path: root/objects/process-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'objects/process-object.h')
-rw-r--r--objects/process-object.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/objects/process-object.h b/objects/process-object.h
deleted file mode 100644
index 041f187..0000000
--- a/objects/process-object.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _PROCESS_OBJECT_H_
-#define _PROCESS_OBJECT_H_
-
-#include <Python.h>
-#include "base-objects.h"
-
-/* forward */
-struct PROCESS_REC;
-
-typedef struct
-{
- PyIrssiFinal_HEAD(struct PROCESS_REC)
- PyObject *target_win;
-} PyProcess;
-
-extern PyTypeObject PyProcessType;
-
-int process_object_init(void);
-PyObject *pyprocess_new(void *process);
-#define pyprocess_check(op) PyObject_TypeCheck(op, &PyProcessType)
-
-#endif