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.

51 lines
1012 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows NT Security
  4. // Copyright (C) Microsoft Corporation, 1997 - 1999
  5. //
  6. // File: crobu.h
  7. //
  8. // Contents: CryptRetrieveObjectByUrl and support functions
  9. //
  10. // History: 02-Jun-00 philh Created
  11. // 01-Jan-02 philh Changed to internally use UNICODE Urls
  12. //
  13. //----------------------------------------------------------------------------
  14. #if !defined(__CRYPTNET_CROBU_H__)
  15. #define __CRYPTNET_CROBU_H__
  16. VOID
  17. WINAPI
  18. InitializeCryptRetrieveObjectByUrl(
  19. HMODULE hModule
  20. );
  21. VOID
  22. WINAPI
  23. DeleteCryptRetrieveObjectByUrl();
  24. BOOL
  25. I_CryptNetIsDebugErrorPrintEnabled();
  26. BOOL
  27. I_CryptNetIsDebugTracePrintEnabled();
  28. void
  29. I_CryptNetDebugPrintfA(
  30. LPCSTR szFormat,
  31. ...
  32. );
  33. void
  34. I_CryptNetDebugErrorPrintfA(
  35. LPCSTR szFormat,
  36. ...
  37. );
  38. void
  39. I_CryptNetDebugTracePrintfA(
  40. LPCSTR szFormat,
  41. ...
  42. );
  43. #endif