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
5d04f652
Commit
5d04f652
authored
Jul 12, 1999
by
Eric Pouech
Committed by
Alexandre Julliard
Jul 12, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings fix.
parent
f2163108
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
security.c
dlls/advapi32/security.c
+1
-1
dosmod.c
loader/dos/dosmod.c
+1
-1
network.c
misc/network.c
+2
-2
No files found.
dlls/advapi32/security.c
View file @
5d04f652
...
@@ -752,7 +752,7 @@ AccessCheck(PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken,
...
@@ -752,7 +752,7 @@ AccessCheck(PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken,
BOOL
WINAPI
SetThreadToken
(
PHANDLE
thread
,
HANDLE
token
)
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
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
...
...
loader/dos/dosmod.c
View file @
5d04f652
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
#ifndef __ELF__
#ifndef __ELF__
/* if not, force dosmod at high addresses */
/* if not, force dosmod at high addresses */
asm
(
".org 0x110000"
);
asm
(
".org 0x110000"
);
#endif
__ELF__
#endif
/* __ELF__ */
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
...
...
misc/network.c
View file @
5d04f652
...
@@ -977,7 +977,7 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
...
@@ -977,7 +977,7 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
*/
*/
DWORD
WINAPI
WNetGetUniversalNameA
(
LPCSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
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
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
return
WN_NO_NETWORK
;
...
@@ -988,7 +988,7 @@ DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel, LPVO
...
@@ -988,7 +988,7 @@ DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel, LPVO
*/
*/
DWORD
WINAPI
WNetGetUniversalNameW
(
LPCWSTR
lpLocalPath
,
DWORD
dwInfoLevel
,
LPVOID
lpBuffer
,
LPDWORD
lpBufferSize
)
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
);
SetLastError
(
WN_NO_NETWORK
);
return
WN_NO_NETWORK
;
return
WN_NO_NETWORK
;
...
...
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