Factor out one shared enum FileStackNodeType

This commit is contained in:
Rangi42
2023-11-06 11:20:46 -05:00
committed by Eldred Habert
parent 02f9128d07
commit 7a1e052b58
3 changed files with 8 additions and 11 deletions

View File

@@ -75,6 +75,12 @@ enum SectionType {
SECTTYPE_INVALID
};
enum FileStackNodeType {
NODE_REPT,
NODE_FILE,
NODE_MACRO,
};
// Nont-`const` members may be patched in RGBLINK depending on CLI flags
extern struct SectionTypeInfo {
char const *const name;