Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6fc6b232
Commit
6fc6b232
authored
Oct 11, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Don't use nameless unions where they are not needed.
parent
0b67c0a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
msg.c
dlls/user32/tests/msg.c
+7
-7
No files found.
dlls/user32/tests/msg.c
View file @
6fc6b232
...
...
@@ -65,7 +65,7 @@ typedef struct
UINT
state
:
16
;
/* ODS_* flags */
}
item
;
LPARAM
lp
;
};
}
u
;
}
DRAW_ITEM_STRUCT
;
static
BOOL
test_DestroyWindow_flag
;
...
...
@@ -6303,13 +6303,13 @@ static LRESULT WINAPI ParentMsgCheckProcA(HWND hwnd, UINT message, WPARAM wParam
trace
(
"WM_DRAWITEM: type %x, ctl_id %x, item_id %x, action %x, state %x
\n
"
,
dis
->
CtlType
,
dis
->
CtlID
,
dis
->
itemID
,
dis
->
itemAction
,
dis
->
itemState
);
di
.
item
.
type
=
dis
->
CtlType
;
di
.
item
.
ctl_id
=
dis
->
CtlID
;
di
.
item
.
item_id
=
dis
->
itemID
;
di
.
item
.
action
=
dis
->
itemAction
;
di
.
item
.
state
=
dis
->
itemState
;
di
.
u
.
item
.
type
=
dis
->
CtlType
;
di
.
u
.
item
.
ctl_id
=
dis
->
CtlID
;
di
.
u
.
item
.
item_id
=
dis
->
itemID
;
di
.
u
.
item
.
action
=
dis
->
itemAction
;
di
.
u
.
item
.
state
=
dis
->
itemState
;
lParam
=
di
.
lp
;
lParam
=
di
.
u
.
lp
;
break
;
}
}
...
...
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