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
14fb1ddc
Commit
14fb1ddc
authored
May 26, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Only include winproc.h where necessary.
parent
7b83af4b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
controls.h
dlls/user/controls.h
+7
-1
user16.c
dlls/user/user16.c
+1
-1
win.c
dlls/user/win.c
+1
-0
winproc.h
dlls/user/winproc.h
+0
-7
No files found.
dlls/user/controls.h
View file @
14fb1ddc
...
...
@@ -22,7 +22,7 @@
#define __WINE_CONTROLS_H
#include "winuser.h"
#include "win
proc
.h"
#include "win
e/winbase16
.h"
/* Built-in class names (see _Undocumented_Windows_ p.418) */
#define POPUPMENU_CLASS_ATOMA MAKEINTATOMA(32768)
/* PopupMenu */
...
...
@@ -45,6 +45,12 @@ struct builtin_class_descr
HBRUSH
brush
;
/* brush or system color */
};
/* Class functions */
struct
tagCLASS
;
/* opaque structure */
struct
tagWND
;
extern
void
CLASS_RegisterBuiltinClasses
(
void
);
extern
void
CLASS_AddWindow
(
struct
tagCLASS
*
class
,
struct
tagWND
*
win
,
BOOL
unicode
);
extern
void
CLASS_FreeModuleClasses
(
HMODULE16
hModule
);
/* defwnd proc */
extern
HBRUSH
DEFWND_ControlColor
(
HDC
hDC
,
UINT
ctlType
);
...
...
dlls/user/user16.c
View file @
14fb1ddc
...
...
@@ -30,7 +30,7 @@
#include "wownt32.h"
#include "user_private.h"
#include "win.h"
#include "
winproc
.h"
#include "
controls
.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
user
);
...
...
dlls/user/win.c
View file @
14fb1ddc
...
...
@@ -33,6 +33,7 @@
#include "wine/server.h"
#include "wine/unicode.h"
#include "win.h"
#include "winproc.h"
#include "user_private.h"
#include "controls.h"
#include "winpos.h"
...
...
dlls/user/winproc.h
View file @
14fb1ddc
...
...
@@ -49,11 +49,4 @@ extern INT_PTR WINPROC_CallDlgProc16( DLGPROC16 func, HWND16 hwnd, UINT16 msg, W
extern
INT_PTR
WINPROC_CallDlgProcA
(
DLGPROC
func
,
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
extern
INT_PTR
WINPROC_CallDlgProcW
(
DLGPROC
func
,
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
/* Class functions */
struct
tagCLASS
;
/* opaque structure */
struct
tagWND
;
extern
void
CLASS_RegisterBuiltinClasses
(
void
);
extern
void
CLASS_AddWindow
(
struct
tagCLASS
*
class
,
struct
tagWND
*
win
,
BOOL
unicode
);
extern
void
CLASS_FreeModuleClasses
(
HMODULE16
hModule
);
#endif
/* __WINE_WINPROC_H */
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