[Mplayer-cvslog] CVS: main/loader/wine vfw.h,1.5,1.6
Jürgen Keil
jkeil at mplayer.dev.hu
Sat Jul 14 19:00:40 CEST 2001
Update of /cvsroot/mplayer/main/loader/wine
In directory mplayer:/var/tmp.root/cvs-serv9995
Modified Files:
vfw.h
Log Message:
Remove some superfluous casts. Fixes a few compile warnings.
Index: vfw.h
===================================================================
RCS file: /cvsroot/mplayer/main/loader/wine/vfw.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vfw.h 13 Jul 2001 08:51:50 -0000 1.5
+++ vfw.h 14 Jul 2001 17:00:38 -0000 1.6
@@ -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) \
More information about the MPlayer-cvslog
mailing list