Added some more pthread overrides.
[wine.git] / include / display.h
blob1560e5b91c43174eaf115e9c2b194c2c4160d1b2
1 /*
2 * DISPLAY driver interface
4 * Copyright 1998 Ulrich Weigand
5 */
7 #ifndef __WINE_DISPLAY_H
8 #define __WINE_DISPLAY_H
10 #include "windef.h"
12 struct tagCURSORICONINFO;
14 #include "pshpack1.h"
15 typedef struct tagCURSORINFO
17 WORD wXMickeys;
18 WORD wYMickeys;
19 } CURSORINFO, *PCURSORINFO, *LPCURSORINFO;
20 #include "poppack.h"
22 WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo);
23 VOID WINAPI DISPLAY_SetCursor( struct tagCURSORICONINFO *lpCursor );
24 VOID WINAPI DISPLAY_MoveCursor( WORD wAbsX, WORD wAbsY );
25 VOID WINAPI DISPLAY_CheckCursor( void );
26 VOID WINAPI UserRepaintDisable16( BOOL16 bDisable );
28 #endif /* __WINE_DISPLAY_H */