Subversion Repositories SvarDOS

Rev

Rev 225 | Rev 233 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
219 mateuszvis 1
/*
225 mateuszvis 2
 *  This file is part of SvarDOS
3
 *  Copyright (C) 2012-2021 Mateusz Viste
219 mateuszvis 4
 */
5
 
6
#ifndef pkginst_sentinel
7
#define pkginst_sentinel
8
 
9
#include "loadconf.h" /* required for struct customdirs */
10
 
230 mateuszvis 11
int is_package_installed(const char *pkgname, const char *dosdir);
225 mateuszvis 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);
219 mateuszvis 14
 
15
#endif