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