Remove some superfluous casts. Fixes a few compile warnings.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1322 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jkeil 2001-07-14 17:00:38 +00:00
parent 61bce79d66
commit c46b19f3a8
1 changed files with 5 additions and 5 deletions

View File

@ -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) \