Subversion Repositories SvarDOS

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 233

/pkginst/pkginst.h
0,0 → 1,15
/*
* This file is part of SvarDOS
* Copyright (C) 2012-2021 Mateusz Viste
*/
 
#ifndef pkginst_sentinel
#define pkginst_sentinel
 
#include "loadconf.h" /* required for struct customdirs */
 
int is_package_installed(const char *pkgname, const char *dosdir);
struct ziplist *pkginstall_preparepackage(const char *pkgname, const char *localfile, int flags, FILE **zipfd, const char *dosdir, const struct customdirs *dirlist, char *buffmem1k);
int pkginstall_installpackage(char *pkgname, char *dosdir, struct customdirs *dirlist, struct ziplist *ziplinkedlist, FILE *zipfd);
 
#endif