mingw-w64/mingw-w64-headers/include/robuffer.idl
Alvin Wong via Mingw-w64-public 1be221cdf6 headers: Add robuffer.idl to generate robuffer.h
Signed-off-by: Alvin Wong <alvin@alvinhc.com>
Signed-off-by: LIU Hao <lh_mouse@126.com>
2022-12-27 14:24:13 +08:00

29 lines
625 B
Plaintext

/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifdef __WIDL__
#pragma winrt
#endif
import "objidl.idl";
cpp_quote("#if NTDDI_VERSION >= NTDDI_WIN8")
namespace Windows.Storage.Streams {
[
uuid(905a0fef-bc53-11df-8c49-001e4fc686da),
]
interface IBufferByteAccess : IUnknown
{
HRESULT Buffer([out, retval] byte **value);
}
}
cpp_quote("STDAPI RoGetBufferMarshaler(IMarshal **bufferMarshaler);")
cpp_quote("#endif")