Commit 6f617600 authored by Mark G. Adams's avatar Mark G. Adams Committed by Alexandre Julliard

Added stub for DrawDibClose.

parent 28d2ccb0
......@@ -7,7 +7,7 @@ type win32
2 stdcall VideoForWindowsVersion() VideoForWindowsVersion
3 stdcall DrawDibBegin(long long long long ptr long long long) DrawDibBegin
4 stub DrawDibChangePalette
5 stub DrawDibClose
5 stdcall DrawDibClose(long) DrawDibClose
6 stub DrawDibDraw
7 stub DrawDibEnd
8 stub DrawDibGetBuffer
......
......@@ -383,6 +383,12 @@ DrawDibOpen( void ) {
return 0xdead;
}
BOOL WINAPI
DrawDibClose( HANDLE /*HDRAWDIB*/ hDib ) {
FIXME("stub!\n");
return TRUE;
}
BOOL VFWAPI DrawDibBegin(HANDLE /*HDRAWDIB*/ hdd,
HDC hdc,
INT dxDst,
......
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