winhttp: Move cookie_t declaration to cookie.c.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2018-10-05 14:58:45 +02:00 committed by Alexandre Julliard
parent 7fb58748e6
commit acf936b94a
2 changed files with 8 additions and 8 deletions

View File

@ -30,6 +30,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(winhttp); 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 ) static domain_t *add_domain( session_t *session, WCHAR *name )
{ {
domain_t *domain; domain_t *domain;

View File

@ -73,14 +73,6 @@ typedef struct
struct list cookies; struct list cookies;
} domain_t; } domain_t;
typedef struct
{
struct list entry;
WCHAR *name;
WCHAR *value;
WCHAR *path;
} cookie_t;
typedef struct { typedef struct {
struct list entry; struct list entry;
LONG ref; LONG ref;