Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Beetham
wine
Commits
5d04f652
Commit
5d04f652
authored
25 years ago
by
Eric Pouech
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Compiler warnings fix.
parent
f2163108
No related branches found
Branches containing commit
Tags
wine-970101
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/advapi32/security.c
+1
-1
1 addition, 1 deletion
dlls/advapi32/security.c
loader/dos/dosmod.c
+1
-1
1 addition, 1 deletion
loader/dos/dosmod.c
misc/network.c
+2
-2
2 additions, 2 deletions
misc/network.c
with
4 additions
and
4 deletions
dlls/advapi32/security.c
+
1
−
1
View file @
5d04f652
...
...
@@ -752,7 +752,7 @@ AccessCheck(PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken,
BOOL
WINAPI
SetThreadToken
(
PHANDLE
thread
,
HANDLE
token
)
{
FIXME_
(
advapi
)(
"(%p, %
p
): stub
\n
"
,
thread
,
token
);
FIXME_
(
advapi
)(
"(%p, %
x
): stub
\n
"
,
thread
,
token
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
This diff is collapsed.
Click to expand it.
loader/dos/dosmod.c
+
1
−
1
View file @
5d04f652
...
...
@@ -10,7 +10,7 @@
#ifndef __ELF__
/* if not, force dosmod at high addresses */
asm
(
".org 0x110000"
);
#endif __ELF__
#endif
/*
__ELF__
*/
#include
<stdio.h>
#include
<stdlib.h>
...
...
This diff is collapsed.
Click to expand it.
misc/network.c
+
2
−
2
View file @
5d04f652
...
...
@@ -977,7 +977,7 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
*/
DWORD
WINAPI
WNetGetUniversalNameA
(
LPCSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
FIXME_
(
mpr
)(
"(%s, 0x%08x, %p, %p): stub
\n
"
,
lpLocalPath
,
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
FIXME_
(
mpr
)(
"(%s, 0x%08
l
x, %p, %p): stub
\n
"
,
lpLocalPath
,
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
...
...
@@ -988,7 +988,7 @@ DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel, LPVO
*/
DWORD
WINAPI
WNetGetUniversalNameW
(
LPCWSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
{
FIXME_
(
mpr
)(
"(%s, 0x%08x, %p, %p): stub
\n
"
,
debugstr_w
(
lpLocalPath
),
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
FIXME_
(
mpr
)(
"(%s, 0x%08
l
x, %p, %p): stub
\n
"
,
debugstr_w
(
lpLocalPath
),
dwInfoLevel
,
lpBuffer
,
lpBufferSize
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment