Stubs for EnumServiceStatus32, small changes.
[wine/multimedia.git] / include / display.h
blobf45db62ac440989a71236ed629a6c2191633f4ee
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 WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo);
21 VOID WINAPI DISPLAY_SetCursor( CURSORICONINFO *lpCursor );
22 VOID WINAPI DISPLAY_MoveCursor( WORD wAbsX, WORD wAbsY );
23 VOID WINAPI DISPLAY_CheckCursor();
25 #endif /* __WINE_DISPLAY_H */