diff --git a/dlls/winhttp/cookie.c b/dlls/winhttp/cookie.c index 59d098f0475..63cbde7c3df 100644 --- a/dlls/winhttp/cookie.c +++ b/dlls/winhttp/cookie.c @@ -30,6 +30,14 @@ WINE_DEFAULT_DEBUG_CHANNEL(winhttp); +typedef struct +{ + struct list entry; + WCHAR *name; + WCHAR *value; + WCHAR *path; +} cookie_t; + static domain_t *add_domain( session_t *session, WCHAR *name ) { domain_t *domain; diff --git a/dlls/winhttp/winhttp_private.h b/dlls/winhttp/winhttp_private.h index 53b3c163df6..cac87bb6f2a 100644 --- a/dlls/winhttp/winhttp_private.h +++ b/dlls/winhttp/winhttp_private.h @@ -73,14 +73,6 @@ typedef struct struct list cookies; } domain_t; -typedef struct -{ - struct list entry; - WCHAR *name; - WCHAR *value; - WCHAR *path; -} cookie_t; - typedef struct { struct list entry; LONG ref;