Subversion Repositories SvarDOS

Rev

Rev 228 | Rev 242 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 228 Rev 232
1
/*
1
/*
2
 * This file is part of pkginst (SvarDOS)
2
 * This file is part of pkginst (SvarDOS)
3
 * Copyright (C) 2013-2021 Mateusz Viste
3
 * Copyright (C) 2013-2021 Mateusz Viste
4
 */
4
 */
5
 
5
 
6
#ifndef showinst_h_sentinel
6
#ifndef showinst_h_sentinel
7
  #define showinst_h_sentinel
7
  #define showinst_h_sentinel
8
  void pkg_freeflist(struct flist_t *flist);
8
  void pkg_freeflist(struct flist_t *flist);
9
  struct flist_t *pkg_loadflist(char *pkgname, char *dosdir);
9
  struct flist_t *pkg_loadflist(const char *pkgname, const char *dosdir);
10
  void showinstalledpkgs(char *filterstr, char *dosdir);
10
  void showinstalledpkgs(char *filterstr, const char *dosdir);
11
  void listfilesofpkg(char *pkgname, char *dosdir);
11
  void listfilesofpkg(char *pkgname, const char *dosdir);
12
#endif
12
#endif
13
 
13