Parent Directory
|
Revision Log
|
Revision Graph
Importing web-site building process.
1 | adcroft | 1.1 | /* |
2 | fs.h | ||
3 | */ | ||
4 | #ifndef __HasSeenModule_FS | ||
5 | #define __HasSeenModule_FS 1 | ||
6 | |||
7 | /* | ||
8 | -- module data | ||
9 | */ | ||
10 | |||
11 | typedef struct | ||
12 | { | ||
13 | regex_list *pathname; | ||
14 | regex_list *dirname; | ||
15 | regex_list *filename; | ||
16 | regex_list *dircontains; | ||
17 | regex_list *title; | ||
18 | |||
19 | } | ||
20 | PATH_LIST; | ||
21 | |||
22 | struct MOD_FS | ||
23 | { | ||
24 | PATH_LIST filerules; | ||
25 | PATH_LIST filematch; | ||
26 | int followsymlinks; | ||
27 | |||
28 | }; | ||
29 | |||
30 | |||
31 | void initModule_FS (SWISH *); | ||
32 | void freeModule_FS (SWISH *); | ||
33 | int configModule_FS (SWISH *, StringList *); | ||
34 | |||
35 | |||
36 | |||
37 | #endif |
ViewVC Help | |
Powered by ViewVC 1.1.22 |