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
f4fca7c4
Commit
f4fca7c4
authored
Sep 11, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Sep 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eliminated warnings.
parent
25c62cc6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
6 deletions
+8
-6
crypt.c
dlls/advapi32/crypt.c
+1
-1
internal.c
dlls/msacm32/internal.c
+2
-0
pidl.c
dlls/shell32/pidl.c
+1
-1
winestring.h
include/wine/winestring.h
+2
-2
string.c
memory/string.c
+2
-2
No files found.
dlls/advapi32/crypt.c
View file @
f4fca7c4
...
...
@@ -34,7 +34,7 @@ CryptAcquireContextA( HCRYPTPROV *phProv, LPCSTR pszContainer,
BOOL
WINAPI
CryptSetKeyParam
(
HCRYPTKEY
hKey
,
DWORD
dwParam
,
BYTE
*
pbData
,
DWORD
dwFlags
)
{
FIXME_
(
advapi
)(
"(%x, %lx, %p, %lx): stub!
\n
"
,
FIXME_
(
advapi
)(
"(%
l
x, %lx, %p, %lx): stub!
\n
"
,
hKey
,
dwParam
,
pbData
,
dwFlags
);
return
FALSE
;
}
...
...
dlls/msacm32/internal.c
View file @
f4fca7c4
...
...
@@ -4,6 +4,8 @@
* Copyright 1998 Patrik Stridvall
*/
#include <string.h>
#include "winbase.h"
#include "winuser.h"
#include "winerror.h"
...
...
dlls/shell32/pidl.c
View file @
f4fca7c4
...
...
@@ -302,7 +302,7 @@ HRESULT WINAPI SHILCreateFromPathW (LPCWSTR path, LPITEMIDLIST * ppidl, DWORD *
if
(
SUCCEEDED
(
SHGetDesktopFolder
(
&
sf
)))
{
ret
=
IShellFolder_ParseDisplayName
(
sf
,
0
,
NULL
,
path
,
&
pchEaten
,
ppidl
,
attributes
);
ret
=
IShellFolder_ParseDisplayName
(
sf
,
0
,
NULL
,
(
LPWSTR
)
path
,
&
pchEaten
,
ppidl
,
attributes
);
IShellFolder_Release
(
sf
);
}
return
ret
;
...
...
include/wine/winestring.h
View file @
f4fca7c4
...
...
@@ -3,8 +3,8 @@
#include "windef.h"
INT
WINAPI
WideCharToLocal
(
LPSTR
,
LPWSTR
,
INT
);
INT
WINAPI
LocalToWideChar
(
LPWSTR
,
LPSTR
,
INT
);
INT
WINAPI
WideCharToLocal
(
LPSTR
,
LP
C
WSTR
,
INT
);
INT
WINAPI
LocalToWideChar
(
LPWSTR
,
LP
C
STR
,
INT
);
LPWSTR
WINAPI
lstrcpyAtoW
(
LPWSTR
,
LPCSTR
);
LPSTR
WINAPI
lstrcpyWtoA
(
LPSTR
,
LPCWSTR
);
LPWSTR
WINAPI
lstrcpynAtoW
(
LPWSTR
,
LPCSTR
,
INT
);
...
...
memory/string.c
View file @
f4fca7c4
...
...
@@ -638,7 +638,7 @@ BOOL WINAPI OemToCharW( LPCSTR s, LPWSTR d )
INT
WINAPI
WideCharToLocal
(
LPSTR
pLocal
,
LPWSTR
pWide
,
LP
C
WSTR
pWide
,
INT
dwChars
)
{
*
pLocal
=
0
;
TRACE
(
"(%p, %s, %i)
\n
"
,
pLocal
,
debugstr_w
(
pWide
),
dwChars
);
...
...
@@ -654,7 +654,7 @@ INT WINAPI WideCharToLocal(
*/
INT
WINAPI
LocalToWideChar
(
LPWSTR
pWide
,
LPSTR
pLocal
,
LP
C
STR
pLocal
,
INT
dwChars
)
{
*
pWide
=
0
;
TRACE
(
"(%p, %s, %i)
\n
"
,
pWide
,
pLocal
,
dwChars
);
...
...
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