diff options
Diffstat (limited to 'camel/url-util.h')
-rw-r--r-- | camel/url-util.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/camel/url-util.h b/camel/url-util.h index 74dab30b14..87b0a980a2 100644 --- a/camel/url-util.h +++ b/camel/url-util.h @@ -32,15 +32,17 @@ extern "C" { #endif /* __cplusplus */ typedef struct { - GString *protocol; - GString *user; - GString *passwd; - GString *host; - GString *port; - GString *path; + gchar *protocol; + gchar *user; + gchar *passwd; + gchar *host; + gchar *port; + gchar *path; + + gchar *url_string; } Gurl; -Gurl *g_url_new(GString* url_string); +Gurl *g_url_new (gchar *url_string); #ifdef __cplusplus } |