#ifndef __UNIONFS_HH__ #define __UNIONFS_HH__ #include #include #include "defs.h" #include "../cli_val.h" #include "../cli_objects.h" #ifdef __cplusplus extern "C" { #endif #define UNSAVED_FILE ".unsaved" #define DISABLE_FILE ".disable" #define DEF_FILE "def" #define WHITEOUT_FILE ".wh.__dir_opaque" #define WHITEOUT_DISABLE_FILE ".wh..disable" #define DELETED_NODE ".wh." #define MAX_LENGTH_DIR_PATH 4096 #define MAX_LENGTH_HELP_STR 4096 boolean value_exists(char *path); struct PriData { unsigned long _pri; gchar **_tok_str; }; struct ValueData { boolean _leaf; NODE_OPERATION _state; }; #ifdef __cplusplus } #endif #endif //__UNIONFS_HH__