Added stub for CheckCursor().
This commit is contained in:
parent
e7cdbb0589
commit
b7db887be1
|
@ -28,7 +28,7 @@ type win16
|
||||||
101 pascal16 Inquire(ptr) DisplayInquire
|
101 pascal16 Inquire(ptr) DisplayInquire
|
||||||
102 pascal16 SetCursor(ptr) DisplaySetCursor
|
102 pascal16 SetCursor(ptr) DisplaySetCursor
|
||||||
103 pascal16 MoveCursor(word word) DisplayMoveCursor
|
103 pascal16 MoveCursor(word word) DisplayMoveCursor
|
||||||
140 stub CheckCursor
|
140 pascal16 CheckCursor() DisplayCheckCursor
|
||||||
500 pascal16 UserRepaintDisable(word) UserRepaintDisable
|
500 pascal16 UserRepaintDisable(word) UserRepaintDisable
|
||||||
600 stub InkReady
|
600 stub InkReady
|
||||||
601 stub GetLPDevice
|
601 stub GetLPDevice
|
||||||
|
|
|
@ -1487,6 +1487,14 @@ VOID WINAPI DisplayMoveCursor( WORD wAbsX, WORD wAbsY )
|
||||||
FIXME(keyboard, "(%d,%d): stub\n", wAbsX, wAbsY );
|
FIXME(keyboard, "(%d,%d): stub\n", wAbsX, wAbsY );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DisplayCheckCursor (DISPLAY.104)
|
||||||
|
*/
|
||||||
|
VOID WINAPI DisplayCheckCursor()
|
||||||
|
{
|
||||||
|
FIXME(keyboard, "stub\n");
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* UserRepaintDisable (DISPLAY.103)
|
* UserRepaintDisable (DISPLAY.103)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue