Subversion Repositories SvarDOS

Rev

Rev 221 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
219 mateuszvis 1
/*
2
 *  This file is part of FDNPKG
3
 *  Copyright (C) 2012-2017 Mateusz Viste
4
 */
5
 
6
#ifndef pkginst_sentinel
7
#define pkginst_sentinel
8
 
9
#include "pkgdb.h"
10
#include "loadconf.h" /* required for struct customdirs */
11
 
12
int is_package_installed(char *pkgname, char *dosdir, char *mapdrv);
13
struct ziplist *pkginstall_preparepackage(struct pkgdb *pkgdb, char *pkgname, char *tempdir, char *localfile, int nosourceflag, char **repolist, FILE **zipfd, char *proxy, int proxyport, char *downloadingstring, char *dosdir, struct customdirs *dirlist, char *buffmem1k, char *mapdrv);
14
int pkginstall_installpackage(char *pkgname, char *dosdir, struct customdirs *dirlist, struct ziplist *ziplinkedlist, FILE *zipfd, char *mapdrv);
15
int validate_package_not_installed(char *pkgname, char *dosdir, char *mapdrv);
16
 
17
#endif