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
b7cc006c
Commit
b7cc006c
authored
Mar 19, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unused function.
parent
4c20cc6f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
19 deletions
+5
-19
cpanelfolder.c
dlls/shell32/cpanelfolder.c
+4
-17
shell32_main.h
dlls/shell32/shell32_main.h
+1
-2
No files found.
dlls/shell32/cpanelfolder.c
View file @
b7cc006c
...
...
@@ -904,20 +904,8 @@ static IPersistFolder2Vtbl vt_PersistFolder2 =
ICPanel_PersistFolder2_GetCurFolder
};
HRESULT
WINAPI
CPanel_GetIconLocationA
(
LPITEMIDLIST
pidl
,
LPSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
)
{
PIDLCPanelStruct
*
pcpanel
=
_ILGetCPanelPointer
(
pidl
);
if
(
!
pcpanel
)
return
E_INVALIDARG
;
lstrcpyA
(
szIconFile
,
pcpanel
->
szName
);
*
piIndex
=
pcpanel
->
iconIdx
!=-
1
?
pcpanel
->
iconIdx
:
0
;
return
S_OK
;
}
HRESULT
WINAPI
CPanel_GetIconLocationW
(
LPITEMIDLIST
pidl
,
LPWSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
)
HRESULT
CPanel_GetIconLocationW
(
LPITEMIDLIST
pidl
,
LPWSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
)
{
PIDLCPanelStruct
*
pcpanel
=
_ILGetCPanelPointer
(
pidl
);
...
...
@@ -935,7 +923,8 @@ HRESULT WINAPI CPanel_GetIconLocationW(LPITEMIDLIST pidl, LPWSTR szIconFile, UIN
* IShellExecuteHookW Implementation
*/
static
HRESULT
WINAPI
IShellExecuteHookW_fnQueryInterface
(
IShellExecuteHookW
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
static
HRESULT
WINAPI
IShellExecuteHookW_fnQueryInterface
(
IShellExecuteHookW
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
_ICOM_THIS_From_IShellExecuteHookW
(
ICPanelImpl
,
iface
);
...
...
@@ -1087,10 +1076,8 @@ static HRESULT WINAPI IShellExecuteHookA_fnExecute(IShellExecuteHookA* iface, LP
static
IShellExecuteHookAVtbl
vt_ShellExecuteHookA
=
{
IShellExecuteHookA_fnQueryInterface
,
IShellExecuteHookA_fnAddRef
,
IShellExecuteHookA_fnRelease
,
IShellExecuteHookA_fnExecute
};
dlls/shell32/shell32_main.h
View file @
b7cc006c
...
...
@@ -93,8 +93,7 @@ HRESULT WINAPI IDropTargetHelper_Constructor (IUnknown * pUnkOuter, REFIID riid,
HRESULT
WINAPI
IFileSystemBindData_Constructor
(
const
WIN32_FIND_DATAW
*
pfd
,
LPBC
*
ppV
);
HRESULT
WINAPI
IControlPanel_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
WINAPI
UnixFolder_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
WINAPI
CPanel_GetIconLocationA
(
LPITEMIDLIST
pidl
,
LPSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
);
HRESULT
WINAPI
CPanel_GetIconLocationW
(
LPITEMIDLIST
pidl
,
LPWSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
);
extern
HRESULT
CPanel_GetIconLocationW
(
LPITEMIDLIST
,
LPWSTR
,
UINT
,
int
*
);
HRESULT
WINAPI
CPanel_ExtractIconA
(
LPITEMIDLIST
pidl
,
LPCSTR
pszFile
,
UINT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
);
HRESULT
WINAPI
CPanel_ExtractIconW
(
LPITEMIDLIST
pidl
,
LPCWSTR
pszFile
,
UINT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
);
...
...
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