SysAllocStringLen16 needs to handle NULL pointers, too.
[wine] / include / display.h
1 /*
2  * DISPLAY driver interface
3  *
4  * Copyright 1998 Ulrich Weigand
5  */
6
7 #ifndef __WINE_DISPLAY_H
8 #define __WINE_DISPLAY_H
9
10 #include "windef.h"
11
12 struct tagCURSORICONINFO;
13
14 #include "pshpack1.h"
15 typedef struct tagCURSORINFO
16 {
17     WORD wXMickeys;
18     WORD wYMickeys;
19 } CURSORINFO, *PCURSORINFO, *LPCURSORINFO;
20 #include "poppack.h"
21
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 );
27
28 #endif /* __WINE_DISPLAY_H */
29