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 @@
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;
......
......@@ -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;
......
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