settings.h

Thu, 20 Oct 2011 14:13:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 20 Oct 2011 14:13:56 +0200
changeset 20
43725438ac50
parent 19
8bac9fd0629d
child 21
91e0890464b0
permissions
-rw-r--r--

Changed author comments + added signatures for upcomming bfile heuristics

     1 /*
     2  * settings.h
     3  *
     4  *  Created on: 15.09.2011
     5  *      Author: Mike
     6  */
     8 #ifndef SETTINGS_H_
     9 #define SETTINGS_H_
    11 #include "stdinc.h"
    12 #include "string_list.h"
    14 typedef struct _settings {
    15   char fileSeparator;
    16   string_list_t* suffixList;
    17   bool recursive;
    18   bool includeSuffixes;
    19   bool matchesOnly;
    20   bool verbose;
    21 } settings_t;
    23 #ifdef _cplusplus
    24 extern "C" {
    25 #endif
    27 settings_t* new_settings_t();
    28 void destroy_settings_t(settings_t*);
    30 #ifdef _cplusplus
    31 }
    32 #endif
    34 #endif /* SETTINGS_H_ */

mercurial