include: Add defines for ID2D1VertexBuffer.

Signed-off-by: Ziqing Hui <zhui@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Ziqing Hui 2022-04-26 10:40:33 +08:00 committed by Alexandre Julliard
parent d5a0334b13
commit 2629c606bf
3 changed files with 35 additions and 0 deletions

View File

@ -17,6 +17,7 @@
*/
#include "d2d1_private.h"
#include "d2d1effectauthor.h"
WINE_DEFAULT_DEBUG_CHANNEL(d2d);

View File

@ -104,6 +104,7 @@ SOURCES = \
d2d1_1.idl \
d2d1_2.idl \
d2d1_3.idl \
d2d1effectauthor.idl \
d2d1effects.idl \
d2d1effects_1.idl \
d2d1effects_2.idl \

View File

@ -0,0 +1,33 @@
/*
* Copyright 2022 Ziqing Hui for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
import "d2d1_1.idl";
[
object,
uuid(9b8b1336-00a5-4668-92b7-ced5d8bf9b7b),
local,
]
interface ID2D1VertexBuffer : IUnknown
{
HRESULT Map(
[out] BYTE **data,
[in] UINT32 size
);
HRESULT Unmap();
}