Leaked source code of windows server 2003
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.

40 lines
992 B

  1. #ifndef _COOKIES_HXX_
  2. #define _COOKIES_HXX_
  3. /*-----------------------------------------------------------------------------
  4. Copyright (c) 1996 Microsoft Corporation
  5. Module Name: cookies.hxx
  6. Abstract:
  7. Cookie upgrade object header
  8. Upgrades cookies to new format by parsing existing cookie
  9. files and adding them to the newly created cookie cache index.
  10. Currently upgrades v3.2 to v4.0.
  11. Author:
  12. Adriaan Canter (adriaanc) 01-Nov-1996.
  13. -------------------------------------------------------------------------------*/
  14. /*-----------------------------------------------------------------------------
  15. class CCookieLoader
  16. ----------------------------------------------------------------------------*/
  17. class CCookieLoader
  18. {
  19. private:
  20. DWORD GetHKLMCookiesDirectory(CHAR*);
  21. CHAR* ParseNextCookie(CHAR*, CHAR**, FILETIME*, FILETIME*);
  22. public:
  23. DWORD LoadCookies(URL_CONTAINER *);
  24. };
  25. #endif // _COOKIES_HXX