# HG changeset patch # User Konosuke Watanabe # Date 1228237114 -32400 # Node ID d973f9debe86f1f56541a44039367e201b18d4bf # Parent d45dd3589560bcc5b899f7822081685ecb886c06 Fix Win32 compile error diff -r d45dd3589560 -r d973f9debe86 main.c --- a/main.c Wed Dec 03 01:18:19 2008 +0900 +++ b/main.c Wed Dec 03 01:58:34 2008 +0900 @@ -30,8 +30,8 @@ static GList *wassr_parrot_list = NULL; static GList *identica_parrot_list = NULL; #ifdef _WIN32 -static gboolean blink_state = FALSE; -static gboolean blink_modified = FALSE; +gboolean blink_state = FALSE; +gboolean blink_modified = FALSE; #endif source_t source; diff -r d45dd3589560 -r d973f9debe86 twitter_api.c --- a/twitter_api.c Wed Dec 03 01:18:19 2008 +0900 +++ b/twitter_api.c Wed Dec 03 01:58:34 2008 +0900 @@ -13,6 +13,10 @@ static void get_status_with_api_cb(PurpleUtilFetchUrlData *url_data, gpointer user_data, const gchar *url_text, size_t len, const gchar *error_message); static void post_status_with_api_cb(PurpleUtilFetchUrlData *url_data, gpointer user_data, const gchar *url_text, size_t len, const gchar *error_message); +#ifdef _WIN32 +extern gboolean blink_state; +extern gboolean blink_modified; +#endif /**************************/ /* API base get functions */