Commit 03435a55 authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

msvideo.dll16: Implement DrawDibProfileDisplay.

parent 4b9bc3a6
......@@ -35,7 +35,7 @@
111 stub DRAWDIBCHANGEPALETTE
112 pascal -ret16 DrawDibRealize(word word word) DrawDibRealize16
113 stub DRAWDIBTIME
114 stub DRAWDIBPROFILEDISPLAY
114 pascal -ret16 DrawDibProfileDisplay(ptr) DrawDibProfileDisplay16
115 stub STRETCHDIB
118 pascal -ret16 DrawDibStart(word long) DrawDibStart16
119 pascal -ret16 DrawDibStop(word) DrawDibStop16
......
......@@ -121,6 +121,15 @@ UINT16 VFWAPI DrawDibRealize16(HDRAWDIB16 hdd, HDC16 hdc,
}
/*************************************************************************
* DrawDibProfileDisplay [MSVIDEO.114]
*/
BOOL16 VFWAPI DrawDibProfileDisplay16(LPBITMAPINFOHEADER lpbi)
{
TRACE("(%p)\n", lpbi);
return DrawDibProfileDisplay(lpbi);
}
/*************************************************************************
* DrawDibStart [MSVIDEO.118]
*/
BOOL16 VFWAPI DrawDibStart16(HDRAWDIB16 hdd, DWORD rate)
......
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