1998-11-08 12:24:02 +00:00
|
|
|
/*
|
|
|
|
* DISPLAY driver
|
|
|
|
*
|
|
|
|
* Copyright 1998 Ulrich Weigand
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-07-04 16:02:24 +00:00
|
|
|
#include "debugtools.h"
|
1999-03-14 16:35:05 +00:00
|
|
|
#include "windef.h"
|
2000-03-20 18:21:19 +00:00
|
|
|
#include "user.h"
|
1999-04-01 08:16:08 +00:00
|
|
|
#include "wine/winuser16.h"
|
1998-11-08 12:24:02 +00:00
|
|
|
|
2000-03-20 18:21:19 +00:00
|
|
|
DEFAULT_DEBUG_CHANNEL(cursor);
|
1999-04-19 14:56:29 +00:00
|
|
|
|
2000-06-03 04:20:19 +00:00
|
|
|
#include "pshpack1.h"
|
|
|
|
typedef struct tagCURSORINFO
|
|
|
|
{
|
|
|
|
WORD wXMickeys;
|
|
|
|
WORD wYMickeys;
|
|
|
|
} CURSORINFO, *PCURSORINFO, *LPCURSORINFO;
|
|
|
|
#include "poppack.h"
|
|
|
|
|
1998-11-08 12:24:02 +00:00
|
|
|
/***********************************************************************
|
2001-07-02 19:59:40 +00:00
|
|
|
* Inquire (DISPLAY.101)
|
1998-11-08 12:24:02 +00:00
|
|
|
*/
|
1998-11-14 18:57:47 +00:00
|
|
|
WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo)
|
1998-11-08 12:24:02 +00:00
|
|
|
{
|
1998-11-14 18:57:47 +00:00
|
|
|
lpCursorInfo->wXMickeys = 1;
|
|
|
|
lpCursorInfo->wYMickeys = 1;
|
1998-11-08 12:24:02 +00:00
|
|
|
|
1998-11-14 18:57:47 +00:00
|
|
|
return sizeof(CURSORINFO);
|
|
|
|
}
|
|
|
|
|
1998-11-08 12:24:02 +00:00
|
|
|
/***********************************************************************
|
2001-07-02 19:59:40 +00:00
|
|
|
* SetCursor (DISPLAY.102)
|
1998-11-08 12:24:02 +00:00
|
|
|
*/
|
1999-05-08 12:40:24 +00:00
|
|
|
VOID WINAPI DISPLAY_SetCursor( struct tagCURSORICONINFO *lpCursor )
|
1998-11-08 12:24:02 +00:00
|
|
|
{
|
2000-08-10 01:16:19 +00:00
|
|
|
USER_Driver.pSetCursor(lpCursor);
|
1998-11-08 12:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 19:59:40 +00:00
|
|
|
* MoveCursor (DISPLAY.103)
|
1998-11-08 12:24:02 +00:00
|
|
|
*/
|
1998-11-14 18:57:47 +00:00
|
|
|
VOID WINAPI DISPLAY_MoveCursor( WORD wAbsX, WORD wAbsY )
|
1998-11-08 12:24:02 +00:00
|
|
|
{
|
2001-06-21 00:44:09 +00:00
|
|
|
USER_Driver.pSetCursorPos(wAbsX, wAbsY);
|
1998-11-08 12:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 19:59:40 +00:00
|
|
|
* CheckCursor (DISPLAY.104)
|
1998-11-08 12:24:02 +00:00
|
|
|
*/
|
1999-06-26 14:58:24 +00:00
|
|
|
VOID WINAPI DISPLAY_CheckCursor( void )
|
1998-11-08 12:24:02 +00:00
|
|
|
{
|
1999-07-04 16:02:24 +00:00
|
|
|
TRACE("stub\n" );
|
1998-11-08 12:24:02 +00:00
|
|
|
}
|
|
|
|
|
1999-11-21 02:01:07 +00:00
|
|
|
/***********************************************************************
|
2001-07-02 19:59:40 +00:00
|
|
|
* GetDriverResourceID (DISPLAY.450)
|
1999-11-21 02:01:07 +00:00
|
|
|
*
|
|
|
|
* Used by USER to check if driver contains better version of a builtin
|
1999-12-06 01:20:00 +00:00
|
|
|
* resource than USER (yes, our DISPLAY does !).
|
1999-11-21 02:01:07 +00:00
|
|
|
* wQueriedResID is the ID USER asks about.
|
1999-12-06 01:20:00 +00:00
|
|
|
* lpsResName does often contain "OEMBIN".
|
1999-11-21 02:01:07 +00:00
|
|
|
*/
|
|
|
|
DWORD WINAPI DISPLAY_GetDriverResourceID( WORD wQueriedResID, LPSTR lpsResName )
|
|
|
|
{
|
|
|
|
if (wQueriedResID == 3)
|
1999-12-06 01:20:00 +00:00
|
|
|
return (DWORD)1;
|
1999-11-21 02:01:07 +00:00
|
|
|
|
|
|
|
return (DWORD)wQueriedResID;
|
|
|
|
}
|
|
|
|
|
1998-11-08 12:24:02 +00:00
|
|
|
/***********************************************************************
|
1998-11-14 18:57:47 +00:00
|
|
|
* UserRepaintDisable (DISPLAY.500)
|
1998-11-08 12:24:02 +00:00
|
|
|
*/
|
1999-02-26 11:11:13 +00:00
|
|
|
VOID WINAPI UserRepaintDisable16( BOOL16 disable )
|
1998-11-08 12:24:02 +00:00
|
|
|
{
|
2001-05-16 19:52:29 +00:00
|
|
|
FIXME("stub\n");
|
1998-11-08 12:24:02 +00:00
|
|
|
}
|
1999-05-22 19:02:04 +00:00
|
|
|
|