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
013652fe
Commit
013652fe
authored
Jun 21, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Make SHGetDesktopFolder use a cached instance of IShellFolder.
parent
9a67bded
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
39 deletions
+25
-39
shfldr_desktop.c
dlls/shell32/shfldr_desktop.c
+25
-39
No files found.
dlls/shell32/shfldr_desktop.c
View file @
013652fe
...
...
@@ -117,30 +117,12 @@ static HRESULT WINAPI ISF_Desktop_fnQueryInterface(
static
ULONG
WINAPI
ISF_Desktop_fnAddRef
(
IShellFolder2
*
iface
)
{
IGenericSFImpl
*
This
=
(
IGenericSFImpl
*
)
iface
;
ULONG
refCount
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(count=%u)
\n
"
,
This
,
refCount
-
1
);
return
refCount
;
return
2
;
/* non-heap based object */
}
static
ULONG
WINAPI
ISF_Desktop_fnRelease
(
IShellFolder2
*
iface
)
{
IGenericSFImpl
*
This
=
(
IGenericSFImpl
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(count=%u)
\n
"
,
This
,
refCount
+
1
);
if
(
!
refCount
)
{
TRACE
(
"-- destroying IShellFolder(%p)
\n
"
,
This
);
SHFree
(
This
->
pidlRoot
);
SHFree
(
This
->
sPathTarget
);
LocalFree
((
HLOCAL
)
This
);
return
0
;
}
return
refCount
;
return
1
;
/* non-heap based object */
}
/**************************************************************************
...
...
@@ -865,9 +847,8 @@ static const IShellFolder2Vtbl vt_MCFldr_ShellFolder2 =
HRESULT
WINAPI
ISF_Desktop_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
)
{
IGenericSFImpl
*
sf
;
static
IGenericSFImpl
*
cached_
sf
;
WCHAR
szMyPath
[
MAX_PATH
];
HRESULT
r
;
TRACE
(
"unkOut=%p %s
\n
"
,
pUnkOuter
,
shdebugstr_guid
(
riid
));
...
...
@@ -876,26 +857,31 @@ HRESULT WINAPI ISF_Desktop_Constructor (
if
(
pUnkOuter
)
return
CLASS_E_NOAGGREGATION
;
if
(
!
SHGetSpecialFolderPathW
(
0
,
szMyPath
,
CSIDL_DESKTOPDIRECTORY
,
TRUE
))
return
E_UNEXPECTED
;
if
(
!
cached_sf
)
{
IGenericSFImpl
*
sf
;
sf
=
LocalAlloc
(
LMEM_ZEROINIT
,
sizeof
(
IGenericSFImpl
)
);
if
(
!
sf
)
return
E_OUTOFMEMORY
;
if
(
!
SHGetSpecialFolderPathW
(
0
,
szMyPath
,
CSIDL_DESKTOPDIRECTORY
,
TRUE
))
return
E_UNEXPECTED
;
sf
->
ref
=
0
;
sf
->
lpVtbl
=
&
vt_MCFldr_ShellFolder2
;
sf
->
pidlRoot
=
_ILCreateDesktop
();
/* my qualified pidl */
sf
->
sPathTarget
=
SHAlloc
(
(
lstrlenW
(
szMyPath
)
+
1
)
*
sizeof
(
WCHAR
)
);
lstrcpyW
(
sf
->
sPathTarget
,
szMyPath
);
sf
=
LocalAlloc
(
LMEM_ZEROINIT
,
sizeof
(
IGenericSFImpl
)
);
if
(
!
sf
)
return
E_OUTOFMEMORY
;
r
=
IUnknown_QueryInterface
(
_IUnknown_
(
sf
),
riid
,
ppv
);
if
(
!
SUCCEEDED
(
r
))
{
IUnknown_Release
(
_IUnknown_
(
sf
)
);
return
r
;
sf
->
ref
=
1
;
sf
->
lpVtbl
=
&
vt_MCFldr_ShellFolder2
;
sf
->
pidlRoot
=
_ILCreateDesktop
();
/* my qualified pidl */
sf
->
sPathTarget
=
SHAlloc
(
(
lstrlenW
(
szMyPath
)
+
1
)
*
sizeof
(
WCHAR
)
);
lstrcpyW
(
sf
->
sPathTarget
,
szMyPath
);
if
(
InterlockedCompareExchangePointer
((
void
*
)
&
cached_sf
,
sf
,
NULL
)
!=
NULL
)
{
/* some other thread already been here */
SHFree
(
sf
->
pidlRoot
);
SHFree
(
sf
->
sPathTarget
);
LocalFree
(
sf
);
}
}
TRACE
(
"--(%p)
\n
"
,
sf
);
return
S_OK
;
return
IUnknown_QueryInterface
(
_IUnknown_
(
cached_sf
),
riid
,
ppv
);
}
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