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.

34 lines
771 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1996 - 1999
  6. //
  7. // File: waitsvc.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef __WAITSVC_H__
  11. #define __WAITSVC_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. //
  16. // routine called by code that calls into the Cryptography service (ProtectedStorage)
  17. // code that makes RPC calls into the service should call this function before
  18. // making the RPC bind call.
  19. //
  20. BOOL
  21. WaitForCryptService(
  22. IN LPWSTR pwszService,
  23. IN BOOL *pfDone,
  24. IN BOOL fLogErrors = FALSE);
  25. #ifdef __cplusplus
  26. } // Balance extern "C" above
  27. #endif
  28. #endif // __WAITSVC_H__