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
69680296
Commit
69680296
authored
Apr 22, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Apr 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Don't use the long type.
parent
870bb4e6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
edit.c
dlls/user32/tests/edit.c
+2
-2
input.c
dlls/user32/tests/input.c
+1
-1
msg.c
dlls/user32/tests/msg.c
+10
-10
No files found.
dlls/user32/tests/edit.c
View file @
69680296
...
...
@@ -646,8 +646,8 @@ static void set_client_height(HWND Wnd, unsigned Height)
GetClientRect
(
Wnd
,
&
ClientRect
);
ok
(
ClientRect
.
bottom
-
ClientRect
.
top
==
Height
,
"The client height should be %
ld, but is %l
d
\n
"
,
(
long
)
Height
,
(
long
)(
ClientRect
.
bottom
-
ClientRect
.
top
)
);
"The client height should be %
d, but is %
d
\n
"
,
Height
,
ClientRect
.
bottom
-
ClientRect
.
top
);
}
static
void
test_edit_control_1
(
void
)
...
...
dlls/user32/tests/input.c
View file @
69680296
...
...
@@ -58,7 +58,7 @@
/* globals */
static
HWND
hWndTest
;
static
long
timetag
=
0x10000000
;
static
LONG
timetag
=
0x10000000
;
static
UINT
(
WINAPI
*
pSendInput
)
(
UINT
,
INPUT
*
,
size_t
);
static
int
(
WINAPI
*
pGetMouseMovePointsEx
)
(
UINT
,
LPMOUSEMOVEPOINT
,
LPMOUSEMOVEPOINT
,
int
,
DWORD
);
...
...
dlls/user32/tests/msg.c
View file @
69680296
...
...
@@ -3220,7 +3220,7 @@ static LRESULT WINAPI mdi_client_hook_proc(HWND hwnd, UINT message, WPARAM wPara
static
LRESULT
WINAPI
mdi_child_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -3270,7 +3270,7 @@ static LRESULT WINAPI mdi_child_wnd_proc(HWND hwnd, UINT message, WPARAM wParam,
static
LRESULT
WINAPI
mdi_frame_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -6897,8 +6897,8 @@ done:
static
LRESULT
MsgCheckProc
(
BOOL
unicode
,
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
long
beginpaint_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
static
LONG
beginpaint_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -7034,7 +7034,7 @@ static LRESULT WINAPI MsgCheckProcW(HWND hwnd, UINT message, WPARAM wParam, LPAR
static
LRESULT
WINAPI
PopupMsgCheckProcA
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -7073,8 +7073,8 @@ static LRESULT WINAPI PopupMsgCheckProcA(HWND hwnd, UINT message, WPARAM wParam,
static
LRESULT
WINAPI
ParentMsgCheckProcA
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
long
beginpaint_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
static
LONG
beginpaint_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -7141,7 +7141,7 @@ static LRESULT WINAPI ParentMsgCheckProcA(HWND hwnd, UINT message, WPARAM wParam
static
LRESULT
WINAPI
TestDlgProcA
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -7175,7 +7175,7 @@ static LRESULT WINAPI TestDlgProcA(HWND hwnd, UINT message, WPARAM wParam, LPARA
static
LRESULT
WINAPI
ShowWindowProcA
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
@@ -11024,7 +11024,7 @@ static LRESULT (WINAPI *listbox_orig_proc)(HWND, UINT, WPARAM, LPARAM);
static
LRESULT
WINAPI
listbox_hook_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wp
,
LPARAM
lp
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
recvd_message
msg
;
...
...
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