Added missing TRACE define when NO_DEBUG_MSGS was defined.
[wine/hacks.git] / include / display.h
blobc9645375307d7586ab0ed9543b9ee111cbdcc96c
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();
26 VOID WINAPI UserRepaintDisable16( BOOL16 bDisable );
28 #endif /* __WINE_DISPLAY_H */