From c46b19f3a8f392eff98ac86abb530fa269322087 Mon Sep 17 00:00:00 2001 From: jkeil Date: Sat, 14 Jul 2001 17:00:38 +0000 Subject: Remove some superfluous casts. Fixes a few compile warnings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1322 b3059339-0415-0410-9bf9-f77b7e298cf2 --- loader/wine/vfw.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'loader/wine') diff --git a/loader/wine/vfw.h b/loader/wine/vfw.h index c75943ac5f..0031e6f7fb 100644 --- a/loader/wine/vfw.h +++ b/loader/wine/vfw.h @@ -389,11 +389,11 @@ long VFWAPIV ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPB #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 @@ long VFWAPIV ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPB #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) \ -- cgit v1.2.3