diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-08-27 22:38:30 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-08-28 15:08:47 +0800 |
commit | bc717ec969a0e02477208304d50872344744dbae (patch) | |
tree | 7af137c9030d0d609fbb9bf622e6ea69c30b6371 /src/empathy-sanity-cleaning.h | |
parent | 79ea3b4ad24160ad2d0a32b24adcd4fb526f9eca (diff) | |
download | gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.tar gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.tar.gz gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.tar.bz2 gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.tar.lz gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.tar.xz gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.tar.zst gsoc2013-empathy-bc717ec969a0e02477208304d50872344744dbae.zip |
Turn migration code to an async function
Diffstat (limited to 'src/empathy-sanity-cleaning.h')
-rw-r--r-- | src/empathy-sanity-cleaning.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/empathy-sanity-cleaning.h b/src/empathy-sanity-cleaning.h index 593f9adce..32000163f 100644 --- a/src/empathy-sanity-cleaning.h +++ b/src/empathy-sanity-cleaning.h @@ -22,6 +22,12 @@ #ifndef __EMPATHY_SANITY_CLEANING_H__ #define __EMPATHY_SANITY_CLEANING_H__ -void empathy_sanity_checking_run_if_needed (void); +#include <gio/gio.h> + +void empathy_sanity_checking_run_async (GAsyncReadyCallback callback, + gpointer user_data); + +gboolean empathy_sanity_checking_run_finish (GAsyncResult *result, + GError **error); #endif |