diff options
Diffstat (limited to 'pref.h')
-rw-r--r-- | pref.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -95,7 +95,7 @@ struct preferences { char *cloud_storage_email; char *cloud_storage_email_encoded; bool save_password_local; - bool show_cloud_pin; + short cloud_verification_status; bool cloud_background_sync; }; enum unit_system_values { @@ -111,6 +111,13 @@ enum def_file_behavior { CLOUD_DEFAULT_FILE }; +enum cloud_status { + CS_UNKNOWN, + CS_INCORRECT_USER_PASSWD, + CS_NEED_TO_VERIFY, + CS_VERIFIED +}; + extern struct preferences prefs, default_prefs; #define PP_GRAPHS_ENABLED (prefs.pp_graphs.po2 || prefs.pp_graphs.pn2 || prefs.pp_graphs.phe) |