Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 258 → Rev 259

/pkginst/showinst.h
5,6 → 5,12
 
#ifndef showinst_h_sentinel
#define showinst_h_sentinel
 
struct flist_t {
struct flist_t *next;
char fname[1]; /* this must be the last item in the structure, it will be expanded to fit the filename */
};
 
void pkg_freeflist(struct flist_t *flist);
struct flist_t *pkg_loadflist(const char *pkgname, const char *dosdir);
int showinstalledpkgs(const char *filterstr, const char *dosdir);