diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-11-01 02:07:23 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-11-01 02:07:23 +0100 |
commit | 2e302748962425d96300f32ec1c0739b6c9aaff1 (patch) | |
tree | 5ac838e752613756a44ea8563fb1d6be96764413 /gweb | |
parent | 64e9586ae2953162b3b7ae1c0e11e4df4b0ed787 (diff) | |
download | connman-2e302748962425d96300f32ec1c0739b6c9aaff1.tar.gz connman-2e302748962425d96300f32ec1c0739b6c9aaff1.tar.bz2 connman-2e302748962425d96300f32ec1c0739b6c9aaff1.zip |
Use return value of result function to indicate to proceed or not
Diffstat (limited to 'gweb')
-rw-r--r-- | gweb/gweb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gweb/gweb.h b/gweb/gweb.h index c07e00d6..df947e0a 100644 --- a/gweb/gweb.h +++ b/gweb/gweb.h @@ -42,7 +42,7 @@ typedef enum { G_WEB_METHOD_GET, } GWebMethod; -typedef void (*GWebResultFunc)(GWebResult *result, gpointer user_data); +typedef gboolean (*GWebResultFunc)(GWebResult *result, gpointer user_data); typedef void (*GWebDebugFunc)(const char *str, gpointer user_data); |