summaryrefslogtreecommitdiff
path: root/src/fileio_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileio_type.h')
-rw-r--r--src/fileio_type.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fileio_type.h b/src/fileio_type.h
index 3aee5a0e7..20df8cd05 100644
--- a/src/fileio_type.h
+++ b/src/fileio_type.h
@@ -24,6 +24,12 @@ enum AbstractFileType {
FT_INVALID = 7, ///< Invalid or unknown file type.
};
+/** Operation performed on the file. */
+enum FileOperation {
+ FOP_LOAD, ///< File is being loaded.
+ FOP_SAVE, ///< File is being saved.
+};
+
/** Elements of a file system that are recognized. */
enum FiosType {
FIOS_TYPE_DRIVE,