dirplex: Added directory-locality to matches.
[ashd.git] / src / dirplex / dirplex.h
index 14b704c..028a3d9 100644 (file)
@@ -5,6 +5,7 @@
 #define PAT_PATHNAME 1
 #define PAT_ALL 2
 #define PAT_DEFAULT 3
+#define PAT_LOCAL 4
 
 #define PT_FILE 0
 #define PT_DIR 1
@@ -16,6 +17,7 @@ struct config {
     struct child *children;
     struct pattern *patterns;
     char **index;
+    char *capture;
 };
 
 struct rule {
@@ -35,7 +37,7 @@ struct child *getchild(struct config *cf, char *name);
 struct config *readconfig(char *file);
 struct config *getconfig(char *path);
 struct config **getconfigs(char *file);
-struct child *findchild(char *file, char *name);
+struct child *findchild(char *file, char *name, struct config **cf);
 struct pattern *findmatch(char *file, int trydefault, int dir);
 
 extern time_t now;