mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
d3dcompiler: Fix dxbc_init() function prototype.
Signed-off-by: Serge Gautherie <winehq-git_serge_180711@gautherie.fr> Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d507549038
commit
ffe9346120
2 changed files with 2 additions and 2 deletions
|
@ -1214,7 +1214,7 @@ HRESULT dxbc_write_blob(struct dxbc *dxbc, ID3DBlob **blob) DECLSPEC_HIDDEN;
|
|||
void dxbc_destroy(struct dxbc *dxbc) DECLSPEC_HIDDEN;
|
||||
HRESULT dxbc_parse(const char *data, SIZE_T data_size, struct dxbc *dxbc) DECLSPEC_HIDDEN;
|
||||
HRESULT dxbc_add_section(struct dxbc *dxbc, DWORD tag, const char *data, DWORD data_size) DECLSPEC_HIDDEN;
|
||||
HRESULT dxbc_init(struct dxbc *dxbc, DWORD count) DECLSPEC_HIDDEN;
|
||||
HRESULT dxbc_init(struct dxbc *dxbc, unsigned int size) DECLSPEC_HIDDEN;
|
||||
|
||||
static inline void read_dword(const char **ptr, DWORD *d)
|
||||
{
|
||||
|
|
|
@ -557,7 +557,7 @@ HRESULT dxbc_add_section(struct dxbc *dxbc, DWORD tag, const char *data, DWORD d
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT dxbc_init(struct dxbc *dxbc, UINT size)
|
||||
HRESULT dxbc_init(struct dxbc *dxbc, unsigned int size)
|
||||
{
|
||||
TRACE("dxbc %p, size %u.\n", dxbc, size);
|
||||
|
||||
|
|
Loading…
Reference in a new issue