diff options
Diffstat (limited to 'camel/url-util.h')
-rw-r--r-- | camel/url-util.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/camel/url-util.h b/camel/url-util.h index 2c9218ea78..fbacbe6da6 100644 --- a/camel/url-util.h +++ b/camel/url-util.h @@ -31,6 +31,16 @@ extern "C" { #pragma } #endif /* __cplusplus */ +typedef struct { + GString *protocol; + GString *user; + GString *passwd; + GString *host; + GString *port; + GString *path; +} Gurl; + +Gurl *new_g_url(GString* url_string); #ifdef __cplusplus } |