msvideo.dll16: Implement DrawDibProfileDisplay.

Signed-off-by: Bruno Jesus <00cpxxx@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Müller 2017-01-26 22:24:42 -02:00 committed by Alexandre Julliard
parent 4b9bc3a6f4
commit 03435a5577
2 changed files with 10 additions and 1 deletions

View file

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

View file

@ -120,6 +120,15 @@ UINT16 VFWAPI DrawDibRealize16(HDRAWDIB16 hdd, HDC16 hdc,
return (UINT16)DrawDibRealize(HDRAWDIB_32(hdd), HDC_32(hdc), fBackground);
}
/*************************************************************************
* DrawDibProfileDisplay [MSVIDEO.114]
*/
BOOL16 VFWAPI DrawDibProfileDisplay16(LPBITMAPINFOHEADER lpbi)
{
TRACE("(%p)\n", lpbi);
return DrawDibProfileDisplay(lpbi);
}
/*************************************************************************
* DrawDibStart [MSVIDEO.118]
*/