summaryrefslogtreecommitdiff
path: root/python/apt_instmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'python/apt_instmodule.h')
-rw-r--r--python/apt_instmodule.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/python/apt_instmodule.h b/python/apt_instmodule.h
new file mode 100644
index 00000000..478b9e2b
--- /dev/null
+++ b/python/apt_instmodule.h
@@ -0,0 +1,20 @@
+// -*- mode: cpp; mode: fold -*-
+// Description /*{{{*/
+// $Id: apt_instmodule.h,v 1.1 2001/09/30 03:52:58 jgg Exp $
+/* ######################################################################
+
+ Prototypes for the module
+
+ ##################################################################### */
+ /*}}}*/
+#ifndef APT_INSTMODULE_H
+#define APT_INSTMODULE_H
+
+#include <python/Python.h>
+
+PyObject *debExtract(PyObject *Self,PyObject *Args);
+extern char *doc_debExtract;
+PyObject *tarExtract(PyObject *Self,PyObject *Args);
+extern char *doc_tarExtract;
+
+#endif