2 * DISPLAY driver interface
4 * Copyright 1998 Ulrich Weigand
7 #ifndef __WINE_DISPLAY_H
8 #define __WINE_DISPLAY_H
10 #include "cursoricon.h"
13 typedef struct _CURSORINFO
17 } CURSORINFO
, *LPCURSORINFO
;
20 typedef struct _MOUSE_DRIVER
{
21 VOID (*pSetCursor
)(CURSORICONINFO
*);
22 VOID (*pMoveCursor
)(WORD
, WORD
);
25 WORD WINAPI
DISPLAY_Inquire(LPCURSORINFO lpCursorInfo
);
26 VOID WINAPI
DISPLAY_SetCursor( CURSORICONINFO
*lpCursor
);
27 VOID WINAPI
DISPLAY_MoveCursor( WORD wAbsX
, WORD wAbsY
);
28 VOID WINAPI
DISPLAY_CheckCursor();
30 #endif /* __WINE_DISPLAY_H */