vkd3d-utils: Return an ID3DBlob pointer from D3DCreateBlob().

ID3DBlob is a typedef for ID3D10Blob, so this isn't all that consequential,
but we're using ID3DBlob for the other vkd3d-utils exports.

Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Henri Verbeet
2022-02-25 19:36:38 +01:00
committed by Alexandre Julliard
parent c97d7f5bff
commit c07e6536a9
3 changed files with 3 additions and 3 deletions

View File

@@ -471,7 +471,7 @@ void vkd3d_destroy_event(HANDLE event)
#endif /* _WIN32 */
HRESULT WINAPI D3DCreateBlob(SIZE_T data_size, ID3D10Blob **blob)
HRESULT WINAPI D3DCreateBlob(SIZE_T data_size, ID3DBlob **blob)
{
HRESULT hr;
void *data;