From 16ab153f3a54194e3217fcf1a235904e4b61623b Mon Sep 17 00:00:00 2001 From: Przemyslaw Pawelczyk Date: Sun, 13 Sep 2015 22:12:14 +0200 Subject: Move source files to src/ directory. As a bonus you can build out-of-tree now via make -f. It's part of the work related to issue #22. --- settings.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 settings.h (limited to 'settings.h') diff --git a/settings.h b/settings.h deleted file mode 100644 index a9ef996..0000000 --- a/settings.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (C) 2013 Przemyslaw Pawelczyk - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; only version 2 of the License is applicable. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -#ifndef SETTINGS_H -#define SETTINGS_H - -#include - -/* Data structure to hold metastore settings */ -struct metasettings { - char *metafile; /* path to the file containing the metadata */ - bool do_mtime; /* should mtimes be corrected? */ - bool do_emptydirs; /* should empty dirs be recreated? */ - bool do_removeemptydirs; /* should new empty dirs be removed? */ - bool do_git; /* should .git dirs be processed? */ -}; - -/* Convenient typedef for immutable settings */ -typedef const struct metasettings msettings; - -#endif /* SETTINGS_H */ -- cgit v1.2.1