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.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fileio_type.h b/src/fileio_type.h
index 4fae7b392..0c4602bba 100644
--- a/src/fileio_type.h
+++ b/src/fileio_type.h
@@ -47,8 +47,11 @@ enum DetailedFileType {
/** Operation performed on the file. */
enum FileOperation {
- FOP_LOAD, ///< File is being loaded.
- FOP_SAVE, ///< File is being saved.
+ FOP_CHECK, ///< Load file for checking and/or preview.
+ FOP_LOAD, ///< File is being loaded.
+ FOP_SAVE, ///< File is being saved.
+
+ FOP_INVALID, ///< Unknown file operation.
};
/**