Mercurial > mplayer.hg
changeset 1321:2712e787f872
Remove some superfluous casts. Fixes a few compile warnings.
author | jkeil |
---|---|
date | Sat, 14 Jul 2001 17:00:38 +0000 |
parents | 18374d49befa |
children | f8bcdb67ede0 |
files | loader/wine/vfw.h |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/wine/vfw.h Sat Jul 14 16:58:55 2001 +0000 +++ b/loader/wine/vfw.h Sat Jul 14 17:00:38 2001 +0000 @@ -389,11 +389,11 @@ #define ICDecompressBeginEx(hic, lpbiInput, lpbiOutput) \ ICUniversalEx( \ - hic, ICM_DECOMPRESSEX_BEGIN, (long)(void*)(lpbiInput), \ - (long)(void*)(lpbiOutput) \ + hic, ICM_DECOMPRESSEX_BEGIN, (lpbiInput), \ + (lpbiOutput) \ ) -#define ICDecompressQuery(hic, lpbiInput, lpbiOutput) \ +#define ICDecompressQuery(hic, lpbiInput, lpbiOutput) \ ICSendMessage( \ hic,ICM_DECOMPRESS_QUERY, (long)(void*)(lpbiInput), \ (long) (void*)(lpbiOutput) \ @@ -401,8 +401,8 @@ #define ICDecompressQueryEx(hic, lpbiInput, lpbiOutput) \ ICUniversalEx( \ - hic,ICM_DECOMPRESSEX_QUERY, (long)(void*)(lpbiInput), \ - (long) (void*)(lpbiOutput) \ + hic,ICM_DECOMPRESSEX_QUERY, (lpbiInput), \ + (lpbiOutput) \ ) #define ICDecompressGetFormat(hic, lpbiInput, lpbiOutput) \