mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
d3dxof: Remove superfluous pointer casts.
This commit is contained in:
parent
0087064c2f
commit
fa6e7c262e
1 changed files with 4 additions and 4 deletions
|
@ -143,7 +143,7 @@ static HRESULT WINAPI IDirectXFileImpl_CreateEnumObject(IDirectXFile* iface, LPV
|
|||
{
|
||||
TRACE("Open source file '%s'\n", (char*)pvSource);
|
||||
|
||||
hFile = CreateFileA((char*)pvSource, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
||||
hFile = CreateFileA(pvSource, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
||||
if (hFile == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
TRACE("File '%s' not found\n", (char*)pvSource);
|
||||
|
@ -164,11 +164,11 @@ static HRESULT WINAPI IDirectXFileImpl_CreateEnumObject(IDirectXFile* iface, LPV
|
|||
}
|
||||
else if (dwLoadOptions == DXFILELOAD_FROMMEMORY)
|
||||
{
|
||||
lpdxflm = (LPDXFILELOADMEMORY)pvSource;
|
||||
lpdxflm = pvSource;
|
||||
|
||||
TRACE("Source in memory at %p with size %d\n", lpdxflm->lpMemory, lpdxflm->dSize);
|
||||
|
||||
memcpy(header, (char*)lpdxflm->lpMemory, 16);
|
||||
memcpy(header, lpdxflm->lpMemory, 16);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -311,7 +311,7 @@ static HRESULT WINAPI IDirectXFileImpl_RegisterTemplates(IDirectXFile* iface, LP
|
|||
DWORD token_header;
|
||||
parse_buffer buf;
|
||||
|
||||
buf.buffer = (LPBYTE)pvData;
|
||||
buf.buffer = pvData;
|
||||
buf.rem_bytes = cbSize;
|
||||
buf.txt = FALSE;
|
||||
buf.token_present = FALSE;
|
||||
|
|
Loading…
Reference in a new issue