diff options
author | Timo Teras <timo.teras@iki.fi> | 2008-11-28 13:15:06 +0200 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2008-11-28 13:15:06 +0200 |
commit | 545a915fafbecbda0e278dfcc881984bd7a8b19b (patch) | |
tree | c58aa72a15a6a8f1330ecc903641b63ba685dcc1 /src/apk_package.h | |
parent | a96572fba84573e81f6b363f1aee0243c7829729 (diff) | |
download | apk-tools-545a915fafbecbda0e278dfcc881984bd7a8b19b.tar.gz apk-tools-545a915fafbecbda0e278dfcc881984bd7a8b19b.tar.bz2 apk-tools-545a915fafbecbda0e278dfcc881984bd7a8b19b.tar.xz apk-tools-545a915fafbecbda0e278dfcc881984bd7a8b19b.zip |
db: rework 'files' to 'installed'
Make the db of installed packages more similar to index file and
reuse the code. Also rename the database file.
Diffstat (limited to 'src/apk_package.h')
-rw-r--r-- | src/apk_package.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/apk_package.h b/src/apk_package.h index ea8ef24..f36eb6b 100644 --- a/src/apk_package.h +++ b/src/apk_package.h @@ -72,10 +72,14 @@ int apk_deps_format(char *buf, int size, struct apk_dependency_array *depends); int apk_script_type(const char *name); +struct apk_package *apk_pkg_new(void); struct apk_package *apk_pkg_read(struct apk_database *db, const char *name); void apk_pkg_free(struct apk_package *pkg); +int apk_pkg_add_info(struct apk_database *db, struct apk_package *pkg, + char field, apk_blob_t value); int apk_pkg_get_state(struct apk_package *pkg); +void apk_pkg_set_state(struct apk_database *db, struct apk_package *pkg, int state); int apk_pkg_add_script(struct apk_package *pkg, struct apk_istream *is, unsigned int type, unsigned int size); int apk_pkg_run_script(struct apk_package *pkg, int root_fd, |