mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ca1bc866cf
- include/winuser.h - interface relevant to user32.spec - include/wine/winuser16.h - the old 16 bit interface (internal use) - include/winbase.h - some minor updates to keep things coherent. - Lot of other files made to include wine/winuser16.h, which is no longer included from windows.h
32 lines
670 B
C
32 lines
670 B
C
/*
|
|
* DISPLAY driver interface
|
|
*
|
|
* Copyright 1998 Ulrich Weigand
|
|
*/
|
|
|
|
#ifndef __WINE_DISPLAY_H
|
|
#define __WINE_DISPLAY_H
|
|
|
|
#include "cursoricon.h"
|
|
#include "wine/winuser16.h"
|
|
|
|
#pragma pack(1)
|
|
typedef struct _CURSORINFO
|
|
{
|
|
WORD wXMickeys;
|
|
WORD wYMickeys;
|
|
} CURSORINFO, *LPCURSORINFO;
|
|
#pragma pack(4)
|
|
|
|
typedef struct _MOUSE_DRIVER {
|
|
VOID (*pSetCursor)(CURSORICONINFO *);
|
|
VOID (*pMoveCursor)(WORD, WORD);
|
|
} MOUSE_DRIVER;
|
|
|
|
WORD WINAPI DISPLAY_Inquire(LPCURSORINFO lpCursorInfo);
|
|
VOID WINAPI DISPLAY_SetCursor( CURSORICONINFO *lpCursor );
|
|
VOID WINAPI DISPLAY_MoveCursor( WORD wAbsX, WORD wAbsY );
|
|
VOID WINAPI DISPLAY_CheckCursor();
|
|
|
|
#endif /* __WINE_DISPLAY_H */
|
|
|