Subversion Repositories SvarDOS

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 221

/pkginst/fdnpkg.h
0,0 → 1,19
/*
* This file is part of FDNPKG
* Copyright (C) 2012-2016 Mateusz Viste
*/
 
#ifndef FDNPKG_H_SENTINEL
#define FDNPKG_H_SENTINEL
 
/* flags used by FDNPKG */
#define PKGINST_NOSOURCE 1
#define PKGINST_SKIPLINKS 2
#define PKGINST_UPDATE 4
 
struct flist_t {
struct flist_t *next;
char fname[2]; /* this must be the last item in the structure, it will be expanded to fit the filename */
};
 
#endif