Subversion Repositories SvarDOS

Rev

Rev 221 | Rev 230 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 221 Rev 225
Line 1... Line 1...
1
/*
1
/*
2
 *  This file is part of FDNPKG
2
 *  This file is part of SvarDOS
3
 *  Copyright (C) 2012-2017 Mateusz Viste
3
 *  Copyright (C) 2012-2021 Mateusz Viste
4
 */
4
 */
5
 
5
 
6
#ifndef pkginst_sentinel
6
#ifndef pkginst_sentinel
7
#define pkginst_sentinel
7
#define pkginst_sentinel
8
 
8
 
9
#include "loadconf.h" /* required for struct customdirs */
9
#include "loadconf.h" /* required for struct customdirs */
10
 
10
 
11
int is_package_installed(char *pkgname, char *dosdir, char *mapdrv);
11
int is_package_installed(char *pkgname, char *dosdir);
12
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);
12
struct ziplist *pkginstall_preparepackage(char *pkgname, char *localfile, int nosourceflag, FILE **zipfd, char *dosdir, struct customdirs *dirlist, char *buffmem1k);
13
int pkginstall_installpackage(char *pkgname, char *dosdir, struct customdirs *dirlist, struct ziplist *ziplinkedlist, FILE *zipfd, char *mapdrv);
13
int pkginstall_installpackage(char *pkgname, char *dosdir, struct customdirs *dirlist, struct ziplist *ziplinkedlist, FILE *zipfd);
14
int validate_package_not_installed(char *pkgname, char *dosdir, char *mapdrv);
14
int validate_package_not_installed(char *pkgname, char *dosdir);
15
 
15
 
16
#endif
16
#endif