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
71f8fc27
Commit
71f8fc27
authored
Sep 17, 2002
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 17, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IDI_APPLICATIONW does not exist on Windows. Use IDI_APPLICATION
instead and cast to LPWSTR. Fixed type cast warnings.
parent
5e5f7bbb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
class.c
dlls/user/tests/class.c
+3
-4
sock.c
dlls/winsock/tests/sock.c
+1
-1
No files found.
dlls/user/tests/class.c
View file @
71f8fc27
...
...
@@ -52,8 +52,8 @@ BOOL ClassTest(HINSTANCE hInstance, BOOL global)
cls
.
cbClsExtra
=
NUMCLASSWORDS
*
sizeof
(
DWORD
);
cls
.
cbWndExtra
=
12
;
cls
.
hInstance
=
hInstance
;
cls
.
hIcon
=
LoadIconW
(
0
,
IDI_APPLICATIONW
);
cls
.
hCursor
=
LoadCursorW
(
0
,
IDC_ARROW
W
);
cls
.
hIcon
=
LoadIconW
(
0
,
(
LPWSTR
)
IDI_APPLICATION
);
cls
.
hCursor
=
LoadCursorW
(
0
,
(
LPWSTR
)
IDC_ARRO
W
);
cls
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
cls
.
lpszMenuName
=
0
;
cls
.
lpszClassName
=
className
;
...
...
@@ -79,8 +79,7 @@ BOOL ClassTest(HINSTANCE hInstance, BOOL global)
CW_USEDEFAULT
,
0
,
CW_USEDEFAULT
,
0
,
0
,
0
,
hInstance
,
0
);
ok
(
hTestWnd
,
"Failed to create window"
);
ok
(
hTestWnd
!=
0
,
"Failed to create window"
);
/* test initial values of valid classwords */
for
(
i
=
0
;
i
<
NUMCLASSWORDS
;
i
++
)
...
...
dlls/winsock/tests/sock.c
View file @
71f8fc27
...
...
@@ -67,7 +67,7 @@ typedef struct test_params
int
sock_type
;
int
sock_prot
;
char
*
inet_addr
;
int
inet_port
;
short
inet_port
;
int
chunk_size
;
int
n_chunks
;
int
n_clients
;
...
...
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