Commit b9521038 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Warning fix.

parent 62510ddb
...@@ -217,8 +217,9 @@ HIC16 VFWAPI ICOpen16(DWORD fccType, DWORD fccHandler, UINT16 wMode) { ...@@ -217,8 +217,9 @@ HIC16 VFWAPI ICOpen16(DWORD fccType, DWORD fccHandler, UINT16 wMode) {
/*********************************************************************** /***********************************************************************
* ICOpenFunction [MSVIDEO.206] * ICOpenFunction [MSVIDEO.206]
*/ */
HIC16 VFWAPI ICOpenFunction16(DWORD fccType, DWORD fccHandler, UINT16 wMode, FARPROC16 lpfnHandler) { HIC16 VFWAPI ICOpenFunction16(DWORD fccType, DWORD fccHandler, UINT16 wMode, FARPROC16 lpfnHandler)
return MSVIDEO_OpenFunc(fccType, fccHandler, wMode, lpfnHandler,FALSE); {
return MSVIDEO_OpenFunc(fccType, fccHandler, wMode, (FARPROC)lpfnHandler,FALSE);
} }
/*********************************************************************** /***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment