wininet.h: Added InternetCookieState declaration.
This commit is contained in:
parent
9228a3be52
commit
0d5e3e74d5
|
@ -1305,6 +1305,16 @@ BOOLAPI HttpQueryInfoA(HINTERNET ,DWORD ,LPVOID ,LPDWORD ,LPDWORD);
|
|||
BOOLAPI HttpQueryInfoW(HINTERNET ,DWORD ,LPVOID ,LPDWORD ,LPDWORD);
|
||||
#define HttpQueryInfo WINELIB_NAME_AW(HttpQueryInfo)
|
||||
|
||||
typedef enum {
|
||||
COOKIE_STATE_UNKNOWN,
|
||||
COOKIE_STATE_ACCEPT,
|
||||
COOKIE_STATE_PROMPT,
|
||||
COOKIE_STATE_LEASH,
|
||||
COOKIE_STATE_DOWNGRADE,
|
||||
COOKIE_STATE_REJECT,
|
||||
COOKIE_STATE_MAX = COOKIE_STATE_REJECT
|
||||
} InternetCookieState;
|
||||
|
||||
BOOLAPI InternetClearAllPerSiteCookieDecisions(VOID);
|
||||
|
||||
BOOLAPI InternetEnumPerSiteCookieDecisionA(LPSTR,ULONG *,ULONG *,ULONG);
|
||||
|
|
Loading…
Reference in New Issue