Added several file server requests
[wine.git] / include / display.h
blobd7a713ea3cf71fd9cfec453805e1fded9bf34f5c
1 /*
2 * DISPLAY driver interface
4 * Copyright 1998 Ulrich Weigand
5 */
7 #ifndef __WINE_DISPLAY_H
8 #define __WINE_DISPLAY_H
10 #include "cursoricon.h"
12 #pragma pack(1)
13 typedef struct _CURSORINFO
15 WORD wXMickeys;
16 WORD wYMickeys;
17 } CURSORINFO, *LPCURSORINFO;
18 #pragma pack(4)
20 typedef struct _MOUSE_DRIVER {
21 VOID (*pSetCursor)(CURSORICONINFO *);
22 VOID (*pMoveCursor)(WORD, WORD);
23 } MOUSE_DRIVER;
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 */