1
0
mirror of https://github.com/openSUSE/libsolv.git synced 2026-02-05 12:45:46 +01:00
Files
libsolv/ext/repo_deb.h
Michael Schroeder e8c3909e84 Support userinstalled flags in pool_deb_get_autoinstalled
(This is so that we can support a name+arch flag later)
2015-02-25 12:01:22 +01:00

14 lines
442 B
C

/*
* Copyright (c) 2009, Novell Inc.
*
* This program is licensed under the BSD license, read LICENSE.BSD
* for further information
*/
extern int repo_add_debpackages(Repo *repo, FILE *fp, int flags);
extern int repo_add_debdb(Repo *repo, int flags);
extern Id repo_add_deb(Repo *repo, const char *deb, int flags);
extern void pool_deb_get_autoinstalled(Pool *pool, FILE *fp, Queue *q, int flags);
#define DEBS_ADD_WITH_PKGID (1 << 8)