scanner.h

Thu, 01 Dec 2011 17:06:27 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 01 Dec 2011 17:06:27 +0100
changeset 26
853a1181884b
parent 23
778388400f7b
permissions
-rw-r--r--

Merge with 3963e8800a1268be93d938c709e2d4be4d0b2d39

     1 /*
     2  * scanner.h
     3  *
     4  *  Created on: 23.05.2011
     5  *      Author: Mike
     6  */
     8 #ifndef SCANNER_H_
     9 #define SCANNER_H_
    11 #include "stdinc.h"
    12 #include "settings.h"
    14 typedef struct {
    15   char *dir;
    16   int spaces;
    17 } scanner_t;
    19 #ifdef _cplusplus
    20 extern "C" {
    21 #endif
    23 int scanDirectory(scanner_t scanner, settings_t* settings);
    25 #ifdef _cplusplus
    26 }
    27 #endif 
    29 #endif /* SCANNER_H_ */

mercurial