1998-11-08 13:24:02 +01:00
|
|
|
/*
|
|
|
|
* DISPLAY driver
|
|
|
|
*
|
|
|
|
* Copyright 1998 Ulrich Weigand
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-02-28 20:14:33 +01:00
|
|
|
#include "debug.h"
|
1999-04-01 10:16:08 +02:00
|
|
|
#include "display.h"
|
|
|
|
#include "mouse.h"
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
1999-05-22 21:02:04 +02:00
|
|
|
#include "message.h"
|
1999-04-01 10:16:08 +02:00
|
|
|
#include "wine/winuser16.h"
|
1998-11-08 13:24:02 +01:00
|
|
|
|
1999-04-19 16:56:29 +02:00
|
|
|
DEFAULT_DEBUG_CHANNEL(cursor)
|
|
|
|
|
1998-11-08 13:24:02 +01:00
|
|
|
/***********************************************************************
|
1998-11-14 19:57:47 +01:00
|
|
|
* DISPLAY_Inquire (DISPLAY.101)
|
1998-11-08 13:24:02 +01:00
|
|
|
*/
|
1998-11-14 19:57:47 +01:00
|
|
|
WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo)
|
1998-11-08 13:24:02 +01:00
|
|
|
{
|
1998-11-14 19:57:47 +01:00
|
|
|
lpCursorInfo->wXMickeys = 1;
|
|
|
|
lpCursorInfo->wYMickeys = 1;
|
1998-11-08 13:24:02 +01:00
|
|
|
|
1998-11-14 19:57:47 +01:00
|
|
|
return sizeof(CURSORINFO);
|
|
|
|
}
|
|
|
|
|
1998-11-08 13:24:02 +01:00
|
|
|
/***********************************************************************
|
1998-11-14 19:57:47 +01:00
|
|
|
* DISPLAY_SetCursor (DISPLAY.102)
|
1998-11-08 13:24:02 +01:00
|
|
|
*/
|
1999-05-08 14:40:24 +02:00
|
|
|
VOID WINAPI DISPLAY_SetCursor( struct tagCURSORICONINFO *lpCursor )
|
1998-11-08 13:24:02 +01:00
|
|
|
{
|
1999-04-01 10:16:08 +02:00
|
|
|
MOUSE_Driver->pSetCursor(lpCursor);
|
1998-11-08 13:24:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
1998-11-14 19:57:47 +01:00
|
|
|
* DISPLAY_MoveCursor (DISPLAY.103)
|
1998-11-08 13:24:02 +01:00
|
|
|
*/
|
1998-11-14 19:57:47 +01:00
|
|
|
VOID WINAPI DISPLAY_MoveCursor( WORD wAbsX, WORD wAbsY )
|
1998-11-08 13:24:02 +01:00
|
|
|
{
|
1999-04-01 10:16:08 +02:00
|
|
|
MOUSE_Driver->pMoveCursor(wAbsX, wAbsY);
|
1998-11-08 13:24:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
1998-11-14 19:57:47 +01:00
|
|
|
* DISPLAY_CheckCursor (DISPLAY.104)
|
1998-11-08 13:24:02 +01:00
|
|
|
*/
|
1998-11-14 19:57:47 +01:00
|
|
|
VOID WINAPI DISPLAY_CheckCursor()
|
1998-11-08 13:24:02 +01:00
|
|
|
{
|
1999-05-23 11:18:30 +02:00
|
|
|
TRACE( cursor, "stub\n" );
|
1998-11-08 13:24:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
1998-11-14 19:57:47 +01:00
|
|
|
* UserRepaintDisable (DISPLAY.500)
|
1998-11-08 13:24:02 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
VOID WINAPI UserRepaintDisable16( BOOL16 disable )
|
1998-11-08 13:24:02 +01:00
|
|
|
{
|
1999-05-22 21:02:04 +02:00
|
|
|
EVENT_Driver->pUserRepaintDisable( disable );
|
1998-11-08 13:24:02 +01:00
|
|
|
}
|
1999-05-22 21:02:04 +02:00
|
|
|
|