Source code of Windows XP (NT5)
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.

51 lines
809 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. auth.h
  5. Abstract:
  6. Private include file for
  7. Author:
  8. Rajeev Dujari (rajeevd) 28-Jul-97
  9. Revision History:
  10. --*/
  11. //
  12. // manifests
  13. //
  14. #define HTTP_AUTHORIZATION_SZ "Authorization:"
  15. #define HTTP_AUTHORIZATION_LEN (sizeof(HTTP_AUTHORIZATION_SZ)-1)
  16. #define HTTP_PROXY_AUTHORIZATION_SZ "Proxy-Authorization:"
  17. #define HTTP_PROXY_AUTHORIZATION_LEN (sizeof(HTTP_PROXY_AUTHORIZATION_SZ)-1)
  18. //
  19. // prototypes - versions of spluginx.hxx for basic auth
  20. //
  21. STDAPI_(void) UrlZonesDetach (void);
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. extern DWORD g_cSspiContexts; // refcount of sspi contexts
  26. DWORD SSPI_Unload();
  27. DWORD_PTR SSPI_InitScheme (LPSTR pszScheme);
  28. #ifdef __cplusplus
  29. } // end extern "C" {
  30. #endif