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
5092ecf6
Commit
5092ecf6
authored
Dec 04, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Finally compile with -D__WINESRC__.
parent
4ecd8677
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
Makefile.in
dlls/comctl32/tests/Makefile.in
+0
-1
comboex.c
dlls/comctl32/tests/comboex.c
+1
-1
header.c
dlls/comctl32/tests/header.c
+2
-2
imagelist.c
dlls/comctl32/tests/imagelist.c
+2
-2
listview.c
dlls/comctl32/tests/listview.c
+2
-2
No files found.
dlls/comctl32/tests/Makefile.in
View file @
5092ecf6
TESTDLL
=
comctl32.dll
IMPORTS
=
comctl32 ole32 user32 gdi32 advapi32
EXTRADEFS
=
-U__WINESRC__
-DWINE_STRICT_PROTOTYPES
-DWINE_NO_NAMELESS_EXTENSION
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
comboex.c
\
...
...
dlls/comctl32/tests/comboex.c
View file @
5092ecf6
...
...
@@ -496,7 +496,7 @@ static BOOL init(void)
wc
.
cbWndExtra
=
0
;
wc
.
hInstance
=
GetModuleHandleA
(
NULL
);
wc
.
hIcon
=
NULL
;
wc
.
hCursor
=
LoadCursorA
(
NULL
,
IDC_ARROW
);
wc
.
hCursor
=
LoadCursorA
(
NULL
,
(
LPCSTR
)
IDC_ARROW
);
wc
.
hbrBackground
=
GetSysColorBrush
(
COLOR_WINDOW
);
wc
.
lpszMenuName
=
NULL
;
wc
.
lpszClassName
=
ComboExTestClass
;
...
...
dlls/comctl32/tests/header.c
View file @
5092ecf6
...
...
@@ -459,7 +459,7 @@ static BOOL register_parent_wnd_class(void)
cls
.
cbWndExtra
=
0
;
cls
.
hInstance
=
GetModuleHandleA
(
NULL
);
cls
.
hIcon
=
0
;
cls
.
hCursor
=
LoadCursorA
(
0
,
IDC_ARROW
);
cls
.
hCursor
=
LoadCursorA
(
0
,
(
LPCSTR
)
IDC_ARROW
);
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
lpszMenuName
=
NULL
;
cls
.
lpszClassName
=
"Header test parent class"
;
...
...
@@ -1661,7 +1661,7 @@ static BOOL init(void)
wc
.
cbWndExtra
=
0
;
wc
.
hInstance
=
GetModuleHandleA
(
NULL
);
wc
.
hIcon
=
NULL
;
wc
.
hCursor
=
LoadCursorA
(
NULL
,
IDC_ARROW
);
wc
.
hCursor
=
LoadCursorA
(
NULL
,
(
LPCSTR
)
IDC_ARROW
);
wc
.
hbrBackground
=
GetSysColorBrush
(
COLOR_WINDOW
);
wc
.
lpszMenuName
=
NULL
;
wc
.
lpszClassName
=
"HeaderTestClass"
;
...
...
dlls/comctl32/tests/imagelist.c
View file @
5092ecf6
...
...
@@ -145,8 +145,8 @@ static HWND create_a_window(void)
cls
.
cbClsExtra
=
0
;
cls
.
cbWndExtra
=
0
;
cls
.
hInstance
=
0
;
cls
.
hIcon
=
LoadIconA
(
0
,
IDI_APPLICATION
);
cls
.
hCursor
=
LoadCursorA
(
0
,
IDC_ARROW
);
cls
.
hIcon
=
LoadIconA
(
0
,
(
LPCSTR
)
IDI_APPLICATION
);
cls
.
hCursor
=
LoadCursorA
(
0
,
(
LPCSTR
)
IDC_ARROW
);
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
lpszMenuName
=
0
;
cls
.
lpszClassName
=
className
;
...
...
dlls/comctl32/tests/listview.c
View file @
5092ecf6
...
...
@@ -524,7 +524,7 @@ static BOOL register_parent_wnd_class(BOOL Unicode)
clsW
.
cbWndExtra
=
0
;
clsW
.
hInstance
=
GetModuleHandleW
(
NULL
);
clsW
.
hIcon
=
0
;
clsW
.
hCursor
=
LoadCursorA
(
0
,
IDC_ARROW
);
clsW
.
hCursor
=
LoadCursorA
(
0
,
(
LPCSTR
)
IDC_ARROW
);
clsW
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
clsW
.
lpszMenuName
=
NULL
;
clsW
.
lpszClassName
=
testparentclassW
;
...
...
@@ -537,7 +537,7 @@ static BOOL register_parent_wnd_class(BOOL Unicode)
clsA
.
cbWndExtra
=
0
;
clsA
.
hInstance
=
GetModuleHandleA
(
NULL
);
clsA
.
hIcon
=
0
;
clsA
.
hCursor
=
LoadCursorA
(
0
,
IDC_ARROW
);
clsA
.
hCursor
=
LoadCursorA
(
0
,
(
LPCSTR
)
IDC_ARROW
);
clsA
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
clsA
.
lpszMenuName
=
NULL
;
clsA
.
lpszClassName
=
"Listview test parent class"
;
...
...
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