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
41566f2a
Commit
41566f2a
authored
Nov 03, 2003
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add common dialog notification messages and WM_SIZE.
parent
262b93ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
spy.c
windows/spy.c
+12
-0
No files found.
windows/spy.c
View file @
41566f2a
...
...
@@ -34,6 +34,7 @@
#include "message.h"
#include "winnls.h"
#include "commctrl.h"
#include "commdlg.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
message
);
...
...
@@ -1657,6 +1658,13 @@ static const SPY_NOTIFY spnfy_array[] = {
SPNFY
(
TCN_SELCHANGING
,
NMHDR
),
SPNFY
(
TCN_GETOBJECT
,
NMHDR
),
/* Common Dialog 0U-601U to 0U-699U */
SPNFY
(
CDN_INITDONE
,
OFNOTIFYA
),
SPNFY
(
CDN_SELCHANGE
,
OFNOTIFYA
),
SPNFY
(
CDN_FOLDERCHANGE
,
OFNOTIFYA
),
SPNFY
(
CDN_SHAREVIOLATION
,
OFNOTIFYA
),
SPNFY
(
CDN_HELP
,
OFNOTIFYA
),
SPNFY
(
CDN_FILEOK
,
OFNOTIFYA
),
SPNFY
(
CDN_TYPECHANGE
,
OFNOTIFYA
),
/* Toolbar 0U-700U to 0U-720U */
SPNFY
(
TBN_GETBUTTONINFOA
,
NMTOOLBARA
),
SPNFY
(
TBN_BEGINDRAG
,
NMTOOLBARA
),
...
...
@@ -2178,6 +2186,10 @@ void SPY_DumpStructure (SPY_INSTANCE *sp_e, BOOL enter)
TRACE
(
"itemData=0x%08lx
\n
"
,
lpmis
->
itemData
);
}
break
;
case
WM_SIZE
:
if
(
!
enter
)
break
;
TRACE
(
"cx=%d cy=%d
\n
"
,
LOWORD
(
sp_e
->
lParam
),
HIWORD
(
sp_e
->
lParam
));
break
;
case
WM_WINDOWPOSCHANGED
:
if
(
!
enter
)
break
;
case
WM_WINDOWPOSCHANGING
:
...
...
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