mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-21 21:20:20 +00:00
19 lines
383 B
C
19 lines
383 B
C
|
|
#ifndef ZOITECHAT_PREFERENCES_PERSISTENCE_H
|
||
|
|
#define ZOITECHAT_PREFERENCES_PERSISTENCE_H
|
||
|
|
|
||
|
|
#include <glib.h>
|
||
|
|
|
||
|
|
typedef struct
|
||
|
|
{
|
||
|
|
gboolean success;
|
||
|
|
gboolean retry_possible;
|
||
|
|
gboolean partial_failure;
|
||
|
|
gboolean config_failed;
|
||
|
|
gboolean theme_failed;
|
||
|
|
const char *failed_file;
|
||
|
|
} PreferencesPersistenceResult;
|
||
|
|
|
||
|
|
PreferencesPersistenceResult preferences_persistence_save_all (void);
|
||
|
|
|
||
|
|
#endif
|