Commit acf936b9 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

winhttp: Move cookie_t declaration to cookie.c.

parent 7fb58748
...@@ -30,6 +30,14 @@ ...@@ -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;
......
...@@ -73,14 +73,6 @@ typedef struct ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment