windows-nt/Source/XPSP1/NT/com/ole32/stg/async/docfile/asyncapi.hxx

39 lines
972 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1994.
//
// File: asyncapi.hxx
//
// Contents: API definitions for async storage
//
// Classes:
//
// Functions:
//
// History: 05-Jan-96 PhilipLa Created
//
//----------------------------------------------------------------------------
#ifndef __ASYNCAPI_HXX__
#define __ASYNCAPI_HXX__
interface IFillLockBytes;
STDAPI StgOpenAsyncDocfileOnIFillLockBytes( IFillLockBytes *pflb,
DWORD grfMode,
DWORD asyncFlags,
IStorage **ppstgOpen);
STDAPI StgGetIFillLockBytesOnILockBytes( ILockBytes *pilb,
IFillLockBytes **ppflb);
STDAPI StgGetIFillLockBytesOnFile(OLECHAR const *pwcsName,
IFillLockBytes **ppflb);
#if DBG == 1
STDAPI StgGetDebugFileLockBytes(OLECHAR const *pwcsName, ILockBytes **ppilb);
#endif
#endif // #ifndef __ASYNCAPI_HXX__