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
f6be7968
Commit
f6be7968
authored
Jun 20, 2012
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Jun 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix some function prototypes.
parent
74fe2989
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
shell32.spec
dlls/shell32/shell32.spec
+3
-3
shellord.c
dlls/shell32/shellord.c
+12
-11
No files found.
dlls/shell32/shell32.spec
View file @
f6be7968
...
...
@@ -95,7 +95,7 @@
100 stdcall -ordinal SHRestricted(long)
102 stdcall -ordinal SHCoCreateInstance(wstr ptr long ptr ptr)
103 stdcall -ordinal SignalFileOpen(
long
)
103 stdcall -ordinal SignalFileOpen(
ptr
)
104 stdcall -noname FileMenu_DeleteAllItems(long)
105 stdcall -noname FileMenu_DrawItem(long ptr)
106 stdcall -noname FileMenu_FindSubMenuByPidl(long ptr)
...
...
@@ -150,7 +150,7 @@
158 stdcall -noname PathGetExtension(str long long) PathGetExtensionAW
159 stdcall -noname PathIsDirectory(ptr) PathIsDirectoryAW
160 stub SHNetConnectionDialog
161 stdcall -noname SHRunControlPanel(
long
long)
161 stdcall -noname SHRunControlPanel(
wstr
long)
162 stdcall -ordinal SHSimpleIDListFromPath(ptr) SHSimpleIDListFromPathAW
163 stdcall -noname StrToOleStr(wstr str) StrToOleStrAW
164 stdcall -ordinal Win32DeleteFile(str) Win32DeleteFileAW
...
...
@@ -162,7 +162,7 @@
170 stdcall -ordinal SHReplaceFromPropSheetExtArray(long long long long)
171 stdcall -ordinal PathCleanupSpec(ptr ptr)
172 stdcall -noname SHCreateLinks(long str ptr long ptr)
173 stdcall -ordinal SHValidateUNC(long
long
long)
173 stdcall -ordinal SHValidateUNC(long
wstr
long)
174 stdcall -ordinal SHCreateShellFolderViewEx(ptr ptr)
175 stdcall -noname SHGetSpecialFolderPath(long long long long) SHGetSpecialFolderPathAW
176 stdcall -ordinal SHSetInstanceExplorer(long)
...
...
dlls/shell32/shellord.c
View file @
f6be7968
...
...
@@ -614,12 +614,12 @@ WORD WINAPI ArrangeWindows(
* NOTES
* exported by ordinal
*/
DWORD
WINAPI
SignalFileOpen
(
DWORD
dwParam1
)
BOOL
WINAPI
SignalFileOpen
(
PCIDLIST_ABSOLUTE
pidl
)
{
FIXME
(
"(
0x%08x):stub.
\n
"
,
dwParam1
);
FIXME
(
"(
%p):stub.
\n
"
,
pidl
);
return
0
;
return
FALSE
;
}
/*************************************************************************
...
...
@@ -1131,9 +1131,10 @@ HRESULT WINAPI SHWinHelp (DWORD v, DWORD w, DWORD x, DWORD z)
* SHRunControlPanel [SHELL32.161]
*
*/
HRESULT
WINAPI
SHRunControlPanel
(
DWORD
x
,
DWORD
z
)
{
FIXME
(
"0x%08x 0x%08x stub
\n
"
,
x
,
z
);
return
0
;
BOOL
WINAPI
SHRunControlPanel
(
LPCWSTR
commandLine
,
HWND
parent
)
{
FIXME
(
"(%s, %p): stub
\n
"
,
debugstr_w
(
commandLine
),
parent
);
return
FALSE
;
}
static
LPUNKNOWN
SHELL32_IExplorerInterface
=
0
;
...
...
@@ -1499,7 +1500,7 @@ HRESULT WINAPI SHLoadOLE(LPARAM lParam)
* DriveType [SHELL32.64]
*
*/
HRESULT
WINAPI
DriveType
(
DWORD
u
)
int
WINAPI
DriveType
(
int
u
)
{
FIXME
(
"0x%04x stub
\n
"
,
u
);
return
0
;
}
...
...
@@ -1582,10 +1583,10 @@ DWORD WINAPI RLBuildListOfPaths (void)
* SHValidateUNC [SHELL32.173]
*
*/
HRESULT
WINAPI
SHValidateUNC
(
DWORD
x
,
DWORD
y
,
DWORD
z
)
BOOL
WINAPI
SHValidateUNC
(
HWND
hwndOwner
,
PWSTR
pszFile
,
UINT
fConnect
)
{
FIXME
(
"
0x%08x 0x%08x 0x%08x stub
\n
"
,
x
,
y
,
z
);
return
0
;
FIXME
(
"
(%p, %s, 0x%08x): stub
\n
"
,
hwndOwner
,
debugstr_w
(
pszFile
),
fConnect
);
return
FALSE
;
}
/************************************************************************
...
...
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