Commit 399e41fc authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Added some ordinals and GetDriverResourceID().

parent 42666eea
......@@ -22,6 +22,24 @@ type win16
19 stub DeviceBitmapBits
20 stub CreateBitmap
21 stub DIBScreenBlt
# ATI driver exports
22 stub SetPalette
23 stub GetPalette
24 stub SetPaletteTranslate
25 stub GetPaletteTranslate
26 stub UpdateColors
27 stub StretchBlt
28 stub StrechDIBits
29 stub SelectBitmap
30 stub BitmapBits
31 stub ReEnable
# these conflict with ordinals 19-21, thus relocated to 39-41 !
39 stub DIBBlt
40 stub CreateDIBitmap
41 stub DIBToDevice
# ATI driver end
90 stub Do_Polylines
91 stub Do_Scanlines
92 stub SaveScreenBitmap
......@@ -29,7 +47,14 @@ type win16
102 pascal16 SetCursor(ptr) DISPLAY_SetCursor
103 pascal16 MoveCursor(word word) DISPLAY_MoveCursor
104 pascal16 CheckCursor() DISPLAY_CheckCursor
400 stub PExtTextOut
401 stub PStrBlt
402 stub RExtTextOut
403 stub RStrBlt
450 pascal GetDriverResourceID(word str) DISPLAY_GetDriverResourceID
500 pascal16 UserRepaintDisable(word) UserRepaintDisable16
501 stub ORDINAL_ONLY1
502 stub ORDINAL_ONLY2
600 stub InkReady
601 stub GetLPDevice
......@@ -50,6 +50,25 @@ VOID WINAPI DISPLAY_CheckCursor( void )
}
/***********************************************************************
* DISPLAY_GetDriverResourceID (DISPLAY.450)
*
* Used by USER to check if driver contains better version of a builtin
* resource than USER.
* wQueriedResID is the ID USER asks about.
* lpsResName might often contain "OEMBIN".
* For now we just let USER use its own resource.
*/
DWORD WINAPI DISPLAY_GetDriverResourceID( WORD wQueriedResID, LPSTR lpsResName )
{
FIXME("Return the display resource ID\n" );
if (wQueriedResID == 3)
return (DWORD)wQueriedResID/*FIXME resourceID*/;
return (DWORD)wQueriedResID;
}
/***********************************************************************
* UserRepaintDisable (DISPLAY.500)
*/
VOID WINAPI UserRepaintDisable16( BOOL16 disable )
......
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