summaryrefslogtreecommitdiffstats
path: root/loader/wine
diff options
context:
space:
mode:
authorjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-14 17:00:38 +0000
committerjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-14 17:00:38 +0000
commitc46b19f3a8f392eff98ac86abb530fa269322087 (patch)
treeb399e597753891d655b76df3e18364199f6e1e3f /loader/wine
parent61bce79d66481ba912d398cb96f313f104e9fe31 (diff)
downloadmpv-c46b19f3a8f392eff98ac86abb530fa269322087.tar.bz2
mpv-c46b19f3a8f392eff98ac86abb530fa269322087.tar.xz
Remove some superfluous casts. Fixes a few compile warnings.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1322 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/wine')
-rw-r--r--loader/wine/vfw.h10
1 files changed, 5 insertions, 5 deletions
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) \