summaryrefslogtreecommitdiff
path: root/python/apt_pkgmodule.h
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-11-24 10:00:36 +0000
committerArch Librarian <arch@canonical.com>2004-11-24 10:00:36 +0000
commite5d16b671f2a625893731b4ea0bd684bbd444323 (patch)
tree73f3a71281ad33ff97a624b3679ce9644031d1a2 /python/apt_pkgmodule.h
parent626a19f14cf2728cab14f3c71cc8d689c7ebc169 (diff)
downloadpython-apt-e5d16b671f2a625893731b4ea0bd684bbd444323.tar.gz
Initial support for accessing source package data
Author: mdz Date: 2003-07-23 02:20:24 GMT Initial support for accessing source package data
Diffstat (limited to 'python/apt_pkgmodule.h')
-rw-r--r--python/apt_pkgmodule.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/apt_pkgmodule.h b/python/apt_pkgmodule.h
index bc3e286c..b2222df4 100644
--- a/python/apt_pkgmodule.h
+++ b/python/apt_pkgmodule.h
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt_pkgmodule.h,v 1.3 2002/01/08 06:53:04 jgg Exp $
+// $Id: apt_pkgmodule.h,v 1.4 2003/07/23 02:20:24 mdz Exp $
/* ######################################################################
Prototypes for the module
@@ -62,5 +62,7 @@ PyObject *TmpGetCache(PyObject *Self,PyObject *Args);
// PkgRecords Stuff
extern PyTypeObject PkgRecordsType;
PyObject *GetPkgRecords(PyObject *Self,PyObject *Args);
+PyObject *GetPkgSrcRecords(PyObject *Self,PyObject *Args);
+PyObject *GetPkgSourceList(PyObject *Self,PyObject *Args);
#endif