# HG changeset patch # User jkeil # Date 995130038 0 # Node ID 2712e787f872804283584cdc6c25d8f2913ae5b1 # Parent 18374d49befa649a57d0709782deb05798c21184 Remove some superfluous casts. Fixes a few compile warnings. diff -r 18374d49befa -r 2712e787f872 loader/wine/vfw.h --- 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) \