Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f27e5299
Commit
f27e5299
authored
Jul 16, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Fix parameter types of SHGetIniStringW.
parent
cb4c9b62
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
19 deletions
+5
-19
ordinal.c
dlls/shlwapi/ordinal.c
+4
-18
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
f27e5299
...
...
@@ -3088,24 +3088,10 @@ BOOL WINAPI PlaySoundWrapW(LPCWSTR pszSound, HMODULE hmod, DWORD fdwSound)
/*************************************************************************
* @ [SHLWAPI.294]
*/
BOOL
WINAPI
SHGetIniStringW
(
LPSTR
str1
,
LPSTR
str2
,
LPSTR
pStr
,
DWORD
some_len
,
LPCSTR
lpStr2
)
{
/*
* str1: "I" "I" pushl esp+0x20
* str2: "U" "I" pushl 0x77c93810
* (is "I" and "U" "integer" and "unsigned" ??)
*
* pStr: "" "" pushl eax
* some_len: 0x824 0x104 pushl 0x824
* lpStr2: "%l" "%l" pushl esp+0xc
*
* shlwapi. StrCpyNW(lpStr2, irrelevant_var, 0x104);
* LocalAlloc(0x00, some_len) -> irrelevant_var
* LocalAlloc(0x40, irrelevant_len) -> pStr
* shlwapi.294(str1, str2, pStr, some_len, lpStr2);
* shlwapi.PathRemoveBlanksW(pStr);
*/
FIXME
(
"('%s', '%s', '%s', %08x, '%s'): stub!
\n
"
,
str1
,
str2
,
pStr
,
some_len
,
lpStr2
);
BOOL
WINAPI
SHGetIniStringW
(
LPCWSTR
str1
,
LPCWSTR
str2
,
LPWSTR
pStr
,
DWORD
some_len
,
LPCWSTR
lpStr2
)
{
FIXME
(
"(%s,%s,%p,%08x,%s): stub!
\n
"
,
debugstr_w
(
str1
),
debugstr_w
(
str2
),
pStr
,
some_len
,
debugstr_w
(
lpStr2
));
return
TRUE
;
}
...
...
dlls/shlwapi/shlwapi.spec
View file @
f27e5299
...
...
@@ -291,7 +291,7 @@
291 stdcall -noname SHMessageBoxCheckExA(ptr ptr ptr ptr ptr long str)
292 stdcall -noname SHMessageBoxCheckExW(ptr ptr ptr ptr ptr long wstr)
293 stub -noname SHCancelUserWorkItems
294 stdcall -noname SHGetIniStringW(
long long long long long
)
294 stdcall -noname SHGetIniStringW(
wstr wstr ptr long wstr
)
295 stdcall -noname SHSetIniStringW(wstr ptr wstr wstr)
296 stub -noname CreateURLFileContentsW
297 stub -noname CreateURLFileContentsA
...
...
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