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.

38 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: asyncapi.hxx
  7. //
  8. // Contents: API definitions for async storage
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 05-Jan-96 PhilipLa Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __ASYNCAPI_HXX__
  18. #define __ASYNCAPI_HXX__
  19. interface IFillLockBytes;
  20. HRESULT StgOpenAsyncDocfileOnIFillLockBytes( IFillLockBytes *pflb,
  21. DWORD grfMode,
  22. DWORD asyncFlags,
  23. IStorage **ppstgOpen);
  24. HRESULT StgGetIFillLockBytesOnILockBytes( ILockBytes *pilb,
  25. IFillLockBytes **ppflb);
  26. HRESULT StgGetIFillLockBytesOnFile(OLECHAR const *pwcsName,
  27. IFillLockBytes **ppflb);
  28. #if DBG == 1
  29. HRESULT StgGetDebugFileLockBytes(OLECHAR const *pwcsName, ILockBytes **ppilb);
  30. #endif
  31. #endif // #ifndef __ASYNCAPI_HXX__