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
09d42ff2
Commit
09d42ff2
authored
Jan 21, 2001
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Jan 21, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added NMCBEENDEDIT structure for NOTIFY dump.
- Added dump of positioning structure for WM_WINDOWPOSCHANG{ED|ING}.
parent
1410bfe0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
spy.c
windows/spy.c
+12
-2
No files found.
windows/spy.c
View file @
09d42ff2
...
...
@@ -1093,8 +1093,8 @@ static const SPY_NOTIFY spnfy_array[] = {
SPNFY
(
CBEN_INSERTITEM
,
NMHDR
),
/* NMCOMBOBOXEX), */
SPNFY
(
CBEN_DELETEITEM
,
NMHDR
),
/* NMCOMBOBOXEX), */
SPNFY
(
CBEN_BEGINEDIT
,
NMHDR
),
SPNFY
(
CBEN_ENDEDITA
,
NM
HDR
),
/* NMCBEENDEDITA), */
SPNFY
(
CBEN_ENDEDITW
,
NM
HDR
),
/* NMCBEENDEDITW), */
SPNFY
(
CBEN_ENDEDITA
,
NM
CBEENDEDITA
),
SPNFY
(
CBEN_ENDEDITW
,
NM
CBEENDEDITW
),
SPNFY
(
CBEN_GETDISPINFOW
,
NMHDR
),
/* NMCOMBOBOXEXW), */
SPNFY
(
CBEN_DRAGBEGINA
,
NMHDR
),
/* NMCBEDRAGBEGINA), */
SPNFY
(
CBEN_DRAGBEGINW
,
NMHDR
),
/* NMCBEDRAGBEGINW), */
...
...
@@ -1265,6 +1265,16 @@ void SPY_DumpStructure (UINT msg, BOOL enter, LPARAM structure)
TRACE
(
"itemData=0x%08lx
\n
"
,
lpmis
->
itemData
);
}
break
;
case
WM_WINDOWPOSCHANGED
:
if
(
!
enter
)
break
;
case
WM_WINDOWPOSCHANGING
:
{
WINDOWPOS
*
lpwp
=
(
WINDOWPOS
*
)
structure
;
TRACE
(
"WINDOWPOS hwnd=0x%04x, after=0x%04x, at (%d,%d) h=%d w=%d, flags=0x%08x
\n
"
,
lpwp
->
hwnd
,
lpwp
->
hwndInsertAfter
,
lpwp
->
x
,
lpwp
->
y
,
lpwp
->
cx
,
lpwp
->
cy
,
lpwp
->
flags
);
}
break
;
case
WM_STYLECHANGED
:
if
(
!
enter
)
break
;
case
WM_STYLECHANGING
:
...
...
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