You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
632 B
20 lines
632 B
// cookie.h - header for external cookie funcs code.
|
|
|
|
class CCookieJar;
|
|
|
|
CCookieJar * CreateCookieJar();
|
|
void CloseCookieJar(CCookieJar * CookieJar);
|
|
|
|
#ifndef WININET_SERVER_CORE
|
|
void PurgeCookieJar();
|
|
#endif
|
|
|
|
#define COOKIE_SECURE INTERNET_COOKIE_IS_SECURE
|
|
#define COOKIE_SESSION INTERNET_COOKIE_IS_SESSION // never saved to disk
|
|
#define COOKIE_NOUI 4
|
|
|
|
BOOL WriteString(HANDLE hFile, const char *pch);
|
|
BOOL WriteStringLF(HANDLE hFile, const char *pch);
|
|
void ReverseString(char *pchFront);
|
|
BOOL PathAndRDomainFromURL(const char *pchURL, char **ppchRDomain, char **ppchPath, BOOL *pfSecure, BOOL bStrip);
|
|
|