1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-03 08:19:41 +00:00

include: Add ID2D1PrintControl interface in d2d1_1.idl.

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Biswapriyo Nath 2020-11-05 21:25:34 +05:30 committed by Alexandre Julliard
parent 0e0a0f2444
commit 9c06947678

View File

@ -629,6 +629,23 @@ interface ID2D1CommandList : ID2D1Image
HRESULT Close();
}
[
object,
uuid(2c1d867d-c290-41c8-ae7e-34a98702e9a5),
local,
]
interface ID2D1PrintControl : IUnknown
{
HRESULT AddPage(
[in] ID2D1CommandList *list,
[in] D2D_SIZE_F size,
[in, optional] IStream *stream,
[out, optional] D2D1_TAG *tag1,
[out, optional] D2D1_TAG *tag2
);
HRESULT Close();
}
[
object,
uuid(e8f7fe7a-191c-466d-ad95-975678bda998),