mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
winex11: Avoid depending on win.h.
This commit is contained in:
parent
5785ee08d0
commit
7af2a9a902
6 changed files with 7 additions and 7 deletions
|
@ -22,7 +22,6 @@
|
|||
#include <X11/cursorfont.h>
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
#include "win.h"
|
||||
#include "x11drv.h"
|
||||
|
||||
/* avoid conflict with field names in included win32 headers */
|
||||
|
|
|
@ -45,7 +45,6 @@
|
|||
#include "wingdi.h"
|
||||
#include "winuser.h"
|
||||
#include "winnls.h"
|
||||
#include "win.h"
|
||||
#include "x11drv.h"
|
||||
#include "wine/server.h"
|
||||
#include "wine/unicode.h"
|
||||
|
|
|
@ -41,7 +41,6 @@ MAKE_FUNCPTR(XcursorImageLoadCursor);
|
|||
#include "winbase.h"
|
||||
#include "wine/winuser16.h"
|
||||
|
||||
#include "win.h"
|
||||
#include "x11drv.h"
|
||||
#include "wine/server.h"
|
||||
#include "wine/library.h"
|
||||
|
|
|
@ -46,7 +46,6 @@
|
|||
#include "xcomposite.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/server.h"
|
||||
#include "win.h"
|
||||
#include "mwm.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
|
||||
|
@ -70,8 +69,6 @@ static const char managed_prop[] = "__wine_x11_managed";
|
|||
|
||||
extern int usexcomposite;
|
||||
|
||||
extern void WIN_invalidate_dce( HWND hwnd, const RECT *rect ); /* FIXME: to be removed */
|
||||
|
||||
/***********************************************************************
|
||||
* is_window_managed
|
||||
*
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#include "wine/wingdi16.h"
|
||||
|
||||
#include "x11drv.h"
|
||||
#include "win.h"
|
||||
|
||||
#include "wine/server.h"
|
||||
#include "wine/debug.h"
|
||||
|
|
|
@ -746,4 +746,11 @@ LPDDHALMODEINFO X11DRV_Settings_SetHandlers(const char *name,
|
|||
|
||||
extern void X11DRV_DDHAL_SwitchMode(DWORD dwModeIndex, LPVOID fb_addr, LPVIDMEM fb_mem);
|
||||
|
||||
/* FIXME: private functions imported from user32 */
|
||||
extern LRESULT HOOK_CallHooks( INT id, INT code, WPARAM wparam, LPARAM lparam, BOOL unicode );
|
||||
extern BOOL WINPOS_ShowIconTitle( HWND hwnd, BOOL bShow );
|
||||
extern void WINPOS_GetMinMaxInfo( HWND hwnd, POINT *maxSize, POINT *maxPos, POINT *minTrack,
|
||||
POINT *maxTrack );
|
||||
extern void WIN_invalidate_dce( HWND hwnd, const RECT *rect );
|
||||
|
||||
#endif /* __WINE_X11DRV_H */
|
||||
|
|
Loading…
Reference in a new issue