summaryrefslogtreecommitdiffstats
path: root/src/cc4group.h
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2020-04-24 22:03:13 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2020-04-24 22:03:13 +0200
commit578a2f3725b3ad221442763f450e8e239a5422d0 (patch)
tree61ad666be22b750fdcc78e71fdc01fb6d553ee82 /src/cc4group.h
parent0e367485f950b2ab7b9bd1b6c5e4a9b5d328a5dc (diff)
downloadcc4group-578a2f3725b3ad221442763f450e8e239a5422d0.tar.gz
cc4group-578a2f3725b3ad221442763f450e8e239a5422d0.zip
Treat packed groups like normal subfolders when opening a folder containing packed groups
Diffstat (limited to 'src/cc4group.h')
-rw-r--r--src/cc4group.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cc4group.h b/src/cc4group.h
index 7e871a2..d06f636 100644
--- a/src/cc4group.h
+++ b/src/cc4group.h
@@ -192,7 +192,9 @@ typedef struct {
struct {
int File; // only a single regular file is allowed
int Directory; // only a directory is allowed, contents are handled recursively
- int All; // currently File | Directory
+ int HandleGroups; // groups are opened and contents are handled recursively
+ int NoGroupHandling; // currently File | Directory
+ int All; // currently File | Directory | HandleGroups
} const AllowedEntryTypes;