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
1513dd20
Commit
1513dd20
authored
Apr 02, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Apr 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Use LONG instead of long.
parent
9c02fda4
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
16 deletions
+16
-16
datetime.c
dlls/comctl32/tests/datetime.c
+1
-1
header.c
dlls/comctl32/tests/header.c
+2
-2
listview.c
dlls/comctl32/tests/listview.c
+3
-3
monthcal.c
dlls/comctl32/tests/monthcal.c
+2
-2
tab.c
dlls/comctl32/tests/tab.c
+2
-2
trackbar.c
dlls/comctl32/tests/trackbar.c
+2
-2
treeview.c
dlls/comctl32/tests/treeview.c
+1
-1
updown.c
dlls/comctl32/tests/updown.c
+3
-3
No files found.
dlls/comctl32/tests/datetime.c
View file @
1513dd20
...
...
@@ -140,7 +140,7 @@ struct subclass_info
static
LRESULT
WINAPI
datetime_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
dlls/comctl32/tests/header.c
View file @
1513dd20
...
...
@@ -404,7 +404,7 @@ struct subclass_info
static
LRESULT
WINAPI
header_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -425,7 +425,7 @@ static LRESULT WINAPI header_subclass_proc(HWND hwnd, UINT message, WPARAM wPara
static
LRESULT
WINAPI
parent_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
dlls/comctl32/tests/listview.c
View file @
1513dd20
...
...
@@ -153,7 +153,7 @@ struct subclass_info
static
LRESULT
WINAPI
parent_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -217,7 +217,7 @@ static HWND create_parent_window(void)
static
LRESULT
WINAPI
listview_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -300,7 +300,7 @@ static HWND create_custom_listview_control(DWORD style)
static
LRESULT
WINAPI
header_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
dlls/comctl32/tests/monthcal.c
View file @
1513dd20
...
...
@@ -378,7 +378,7 @@ static void test_monthcal(void)
static
LRESULT
WINAPI
parent_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -456,7 +456,7 @@ static HWND create_parent_window(void)
static
LRESULT
WINAPI
monthcal_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
dlls/comctl32/tests/tab.c
View file @
1513dd20
...
...
@@ -310,7 +310,7 @@ create_tabcontrol (DWORD style, DWORD mask)
static
LRESULT
WINAPI
parentWindowProcess
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -378,7 +378,7 @@ struct subclass_info
static
LRESULT
WINAPI
tabSubclassProcess
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
dlls/comctl32/tests/trackbar.c
View file @
1513dd20
...
...
@@ -392,7 +392,7 @@ struct subclass_info
};
static
LRESULT
WINAPI
parent_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
){
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -453,7 +453,7 @@ static HWND create_parent_window(void){
static
LRESULT
WINAPI
trackbar_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
){
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
dlls/comctl32/tests/treeview.c
View file @
1513dd20
...
...
@@ -665,7 +665,7 @@ static void TestGetSet(void)
/* This function hooks in and records all messages to the treeview control */
static
LRESULT
WINAPI
TreeviewWndProc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
WNDPROC
lpOldProc
=
(
WNDPROC
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
...
...
dlls/comctl32/tests/updown.c
View file @
1513dd20
...
...
@@ -193,7 +193,7 @@ static const struct message test_updown_destroy_seq[] = {
static
LRESULT
WINAPI
parent_wnd_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -262,7 +262,7 @@ struct subclass_info
static
LRESULT
WINAPI
edit_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
message
msg
;
...
...
@@ -310,7 +310,7 @@ static HWND create_edit_control(void)
static
LRESULT
WINAPI
updown_subclass_proc
(
HWND
hwnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
{
struct
subclass_info
*
info
=
(
struct
subclass_info
*
)
GetWindowLongPtrA
(
hwnd
,
GWLP_USERDATA
);
static
long
defwndproc_counter
=
0
;
static
LONG
defwndproc_counter
=
0
;
LRESULT
ret
;
struct
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