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
b490803b
Commit
b490803b
authored
Nov 16, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Added partial implementation of SHPropStgWriteMultiple.
parent
c148c041
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
2 deletions
+33
-2
shellole.c
dlls/shell32/shellole.c
+33
-2
No files found.
dlls/shell32/shellole.c
View file @
b490803b
...
@@ -752,6 +752,37 @@ HRESULT WINAPI SHPropStgReadMultiple(IPropertyStorage *pps, UINT uCodePage,
...
@@ -752,6 +752,37 @@ HRESULT WINAPI SHPropStgReadMultiple(IPropertyStorage *pps, UINT uCodePage,
HRESULT
WINAPI
SHPropStgWriteMultiple
(
IPropertyStorage
*
pps
,
UINT
*
uCodePage
,
HRESULT
WINAPI
SHPropStgWriteMultiple
(
IPropertyStorage
*
pps
,
UINT
*
uCodePage
,
ULONG
cpspec
,
const
PROPSPEC
*
rgpspec
,
PROPVARIANT
*
rgvar
,
PROPID
propidNameFirst
)
ULONG
cpspec
,
const
PROPSPEC
*
rgpspec
,
PROPVARIANT
*
rgvar
,
PROPID
propidNameFirst
)
{
{
FIXME
(
"stub
\n
"
);
STATPROPSETSTG
stat
;
return
E_NOTIMPL
;
UINT
codepage
;
HRESULT
hres
;
FIXME
(
"%p %p %u %p %p %d
\n
"
,
pps
,
uCodePage
,
cpspec
,
rgpspec
,
rgvar
,
propidNameFirst
);
hres
=
IPropertyStorage_Stat
(
pps
,
&
stat
);
if
(
FAILED
(
hres
))
return
hres
;
if
(
uCodePage
&&
*
uCodePage
)
codepage
=
*
uCodePage
;
else
{
PROPSPEC
prop
;
PROPVARIANT
ret
;
prop
.
ulKind
=
PRSPEC_PROPID
;
prop
.
u
.
propid
=
PID_CODEPAGE
;
hres
=
IPropertyStorage_ReadMultiple
(
pps
,
1
,
&
prop
,
&
ret
);
if
(
FAILED
(
hres
))
return
hres
;
if
(
ret
.
vt
!=
VT_I2
||
!
ret
.
u
.
iVal
)
return
E_FAIL
;
codepage
=
ret
.
u
.
iVal
;
if
(
uCodePage
)
*
uCodePage
=
codepage
;
}
/* TODO: do something with codepage and stat */
hres
=
IPropertyStorage_WriteMultiple
(
pps
,
cpspec
,
rgpspec
,
rgvar
,
propidNameFirst
);
return
hres
;
}
}
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