From acf936b94a6d3689d273a938032c939d706ebd01 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 5 Oct 2018 14:58:45 +0200 Subject: [PATCH] winhttp: Move cookie_t declaration to cookie.c. Signed-off-by: Jacek Caban Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- dlls/winhttp/cookie.c | 8 ++++++++ dlls/winhttp/winhttp_private.h | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) 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;