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
e83ca9b7
Commit
e83ca9b7
authored
Nov 29, 2023
by
Louis Lenders
Committed by
Alexandre Julliard
Nov 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add stub for SHSetTemporaryPropertyForItem.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55536
parent
6a78f71f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shellitem.c
dlls/shell32/shellitem.c
+7
-0
No files found.
dlls/shell32/shell32.spec
View file @
e83ca9b7
...
@@ -425,6 +425,7 @@
...
@@ -425,6 +425,7 @@
@ stdcall SHQueryUserNotificationState(ptr)
@ stdcall SHQueryUserNotificationState(ptr)
@ stdcall SHRemoveLocalizedName(wstr)
@ stdcall SHRemoveLocalizedName(wstr)
@ stdcall SHSetLocalizedName(wstr wstr long)
@ stdcall SHSetLocalizedName(wstr wstr long)
@ stdcall SHSetTemporaryPropertyForItem(ptr ptr ptr)
@ stdcall SHSetUnreadMailCountW(wstr long wstr)
@ stdcall SHSetUnreadMailCountW(wstr long wstr)
@ stdcall SHUpdateRecycleBinIcon()
@ stdcall SHUpdateRecycleBinIcon()
@ stdcall SheChangeDirA(str)
@ stdcall SheChangeDirA(str)
...
...
dlls/shell32/shellitem.c
View file @
e83ca9b7
...
@@ -1658,3 +1658,10 @@ HRESULT WINAPI CustomDestinationList_Constructor(IUnknown *outer, REFIID riid, v
...
@@ -1658,3 +1658,10 @@ HRESULT WINAPI CustomDestinationList_Constructor(IUnknown *outer, REFIID riid, v
ICustomDestinationList_Release
(
&
list
->
ICustomDestinationList_iface
);
ICustomDestinationList_Release
(
&
list
->
ICustomDestinationList_iface
);
return
hr
;
return
hr
;
}
}
HRESULT
WINAPI
SHSetTemporaryPropertyForItem
(
IShellItem
*
psi
,
REFPROPERTYKEY
propkey
,
REFPROPVARIANT
propvar
)
{
FIXME
(
"%p %p %p: stub
\n
"
,
psi
,
propkey
,
propvar
);
return
E_NOTIMPL
;
}
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