Commit 78acbb6f authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

gdi32: Add GdiGetDevmodeForPage stub.

parent c2489c50
......@@ -2682,3 +2682,12 @@ BOOL WINAPI GdiDeleteSpoolFileHandle( HANDLE h )
FIXME( "%p\n", h );
return FALSE;
}
/*******************************************************************
* GdiGetDevmodeForPage (GDI32.@)
*/
BOOL WINAPI GdiGetDevmodeForPage( HANDLE h, DWORD page, DEVMODEW **cur, DEVMODEW **prev )
{
FIXME( "%p %ld %p %p\n", h, page, cur, prev );
return FALSE;
}
......@@ -191,7 +191,7 @@
@ stdcall GdiGetCharDimensions(long ptr ptr)
@ stdcall GdiGetCodePage(long)
# @ stub GdiGetDC
# @ stub GdiGetDevmodeForPage
@ stdcall GdiGetDevmodeForPage(ptr long ptr ptr)
@ stub GdiGetLocalBitmap
@ stub GdiGetLocalBrush
@ stub GdiGetLocalDC
......
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