Subversion Repositories SvarDOS

Rev

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

Rev Author Line No. Line
221 mateuszvis 1
/*
2
 *  This file is part of FDNPKG
3
 *  Copyright (C) 2012-2016 Mateusz Viste
4
 */
5
 
6
#ifndef FDNPKG_H_SENTINEL
7
#define FDNPKG_H_SENTINEL
8
 
9
/* flags used by FDNPKG */
227 mateuszvis 10
#define PKGINST_SKIPLINKS 1
11
#define PKGINST_UPDATE    2
221 mateuszvis 12
 
13
struct flist_t {
14
  struct flist_t *next;
15
  char fname[2]; /* this must be the last item in the structure, it will be expanded to fit the filename */
16
};
17
 
18
#endif