Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b2686ad2
Commit
b2686ad2
authored
Jun 29, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Move appropriate parts of winpos.h to winuser.h and win.h,
remove winpos.h afterwards.
parent
d2ee3872
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
52 deletions
+14
-52
defwnd.c
dlls/user/defwnd.c
+0
-1
dialog.c
dlls/user/dialog.c
+0
-1
message.c
dlls/user/message.c
+0
-1
nonclient.c
dlls/user/nonclient.c
+0
-1
win.c
dlls/user/win.c
+0
-1
winpos.c
dlls/user/winpos.c
+0
-1
window.c
dlls/winex11.drv/window.c
+0
-1
winpos.c
dlls/winex11.drv/winpos.c
+0
-1
win.h
include/win.h
+9
-0
winpos.h
include/winpos.h
+0
-44
winuser.h
include/winuser.h
+5
-0
No files found.
dlls/user/defwnd.c
View file @
b2686ad2
...
...
@@ -33,7 +33,6 @@
#include "win.h"
#include "user_private.h"
#include "controls.h"
#include "winpos.h"
#include "wine/unicode.h"
#include "wine/winuser16.h"
#include "wine/server.h"
...
...
dlls/user/dialog.c
View file @
b2686ad2
...
...
@@ -38,7 +38,6 @@
#include "wine/unicode.h"
#include "controls.h"
#include "win.h"
#include "winpos.h"
#include "user_private.h"
#include "wine/debug.h"
...
...
dlls/user/message.c
View file @
b2686ad2
...
...
@@ -38,7 +38,6 @@
#include "wine/server.h"
#include "user_private.h"
#include "win.h"
#include "winpos.h"
#include "controls.h"
#include "winproc.h"
#include "wine/debug.h"
...
...
dlls/user/nonclient.c
View file @
b2686ad2
...
...
@@ -30,7 +30,6 @@
#include "win.h"
#include "user_private.h"
#include "controls.h"
#include "winpos.h"
#include "shellapi.h"
#include "wine/debug.h"
...
...
dlls/user/win.c
View file @
b2686ad2
...
...
@@ -36,7 +36,6 @@
#include "winproc.h"
#include "user_private.h"
#include "controls.h"
#include "winpos.h"
#include "winerror.h"
#include "wine/debug.h"
...
...
dlls/user/winpos.c
View file @
b2686ad2
...
...
@@ -36,7 +36,6 @@
#include "controls.h"
#include "user_private.h"
#include "win.h"
#include "winpos.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
win
);
...
...
dlls/winex11.drv/window.c
View file @
b2686ad2
...
...
@@ -43,7 +43,6 @@
#include "wine/debug.h"
#include "wine/server.h"
#include "win.h"
#include "winpos.h"
#include "mwm.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
x11drv
);
...
...
dlls/winex11.drv/winpos.c
View file @
b2686ad2
...
...
@@ -38,7 +38,6 @@
#include "x11drv.h"
#include "win.h"
#include "winpos.h"
#include "wine/server.h"
#include "wine/debug.h"
...
...
include/win.h
View file @
b2686ad2
...
...
@@ -106,4 +106,13 @@ inline static void WIN_ReleasePtr( WND *ptr )
extern
LRESULT
HOOK_CallHooks
(
INT
id
,
INT
code
,
WPARAM
wparam
,
LPARAM
lparam
,
BOOL
unicode
);
extern
BOOL
WINPOS_RedrawIconTitle
(
HWND
hWnd
);
extern
BOOL
WINPOS_ShowIconTitle
(
HWND
hwnd
,
BOOL
bShow
);
extern
void
WINPOS_GetMinMaxInfo
(
HWND
hwnd
,
POINT
*
maxSize
,
POINT
*
maxPos
,
POINT
*
minTrack
,
POINT
*
maxTrack
);
extern
LONG
WINPOS_HandleWindowPosChanging
(
HWND
hwnd
,
WINDOWPOS
*
winpos
);
extern
HWND
WINPOS_WindowFromPoint
(
HWND
hwndScope
,
POINT
pt
,
INT
*
hittest
);
extern
void
WINPOS_CheckInternalPos
(
HWND
hwnd
);
extern
void
WINPOS_ActivateOtherWindow
(
HWND
hwnd
);
#endif
/* __WINE_WIN_H */
include/winpos.h
deleted
100644 → 0
View file @
d2ee3872
/*
* *DeferWindowPos() structure and definitions
*
* Copyright 1994 Alexandre Julliard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_WINPOS_H
#define __WINE_WINPOS_H
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <wingdi.h>
#include <winuser.h>
/* undocumented SWP flags - from SDK 3.1 */
#define SWP_NOCLIENTSIZE 0x0800
#define SWP_NOCLIENTMOVE 0x1000
#define SWP_STATECHANGED 0x8000
extern
BOOL
WINPOS_RedrawIconTitle
(
HWND
hWnd
);
extern
BOOL
WINPOS_ShowIconTitle
(
HWND
hwnd
,
BOOL
bShow
);
extern
void
WINPOS_GetMinMaxInfo
(
HWND
hwnd
,
POINT
*
maxSize
,
POINT
*
maxPos
,
POINT
*
minTrack
,
POINT
*
maxTrack
);
extern
LONG
WINPOS_HandleWindowPosChanging
(
HWND
hwnd
,
WINDOWPOS
*
winpos
);
extern
HWND
WINPOS_WindowFromPoint
(
HWND
hwndScope
,
POINT
pt
,
INT
*
hittest
);
extern
void
WINPOS_CheckInternalPos
(
HWND
hwnd
);
extern
void
WINPOS_ActivateOtherWindow
(
HWND
hwnd
);
#endif
/* __WINE_WINPOS_H */
include/winuser.h
View file @
b2686ad2
...
...
@@ -3155,6 +3155,11 @@ typedef struct {
#define SWP_DEFERERASE 0x2000
#define SWP_ASYNCWINDOWPOS 0x4000
/* undocumented SWP flags - from SDK 3.1 */
#define SWP_NOCLIENTSIZE 0x0800
#define SWP_NOCLIENTMOVE 0x1000
#define SWP_STATECHANGED 0x8000
#define HWND_DESKTOP ((HWND)0)
#define HWND_BROADCAST ((HWND)0xffff)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment