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
58abac37
Commit
58abac37
authored
Apr 16, 1999
by
Michael Veksler
Committed by
Alexandre Julliard
Apr 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed warnings.
parent
002106ac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
winsock_async.c
misc/winsock_async.c
+1
-1
dosconf.c
msdos/dosconf.c
+2
-0
user.c
windows/user.c
+1
-1
No files found.
misc/winsock_async.c
View file @
58abac37
...
...
@@ -358,7 +358,7 @@ static HANDLE16 __WSAsyncDBQuery(
aq
->
sbuf
=
(
SEGPTR
)
sbuf
;
aq
->
sbuflen
=
sbuflen
;
#if 1
hthread
=
CreateThread
(
NULL
,
NULL
,
_async_queryfun
,
aq
,
0
,
NULL
);
hthread
=
CreateThread
(
NULL
,
0
,
_async_queryfun
,
aq
,
0
,
NULL
);
if
(
hthread
==
INVALID_HANDLE_VALUE
)
#endif
_async_queryfun
(
aq
);
...
...
msdos/dosconf.c
View file @
58abac37
...
...
@@ -208,7 +208,9 @@ static int DOSCONF_Files(char **confline)
static
int
DOSCONF_Install
(
char
**
confline
)
{
#if 0
int loadhigh = 0;
#endif
*
confline
+=
7
;
/* strlen("INSTALL") */
if
(
!
(
DOSCONF_JumpToEntry
(
confline
,
'='
)))
return
0
;
...
...
windows/user.c
View file @
58abac37
...
...
@@ -561,7 +561,7 @@ BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, SECURITY_INFORMATION * pSIRequest
* SetSystemCursor (USER32.507)
*/
BOOL
WINAPI
SetSystemCursor
(
HCURSOR
hcur
,
DWORD
id
)
{
FIXME
(
win32
,
"(%08x,%08x),stub!
\n
"
,
hcur
,
id
);
{
FIXME
(
win32
,
"(%08x,%08
l
x),stub!
\n
"
,
hcur
,
id
);
return
TRUE
;
}
...
...
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