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
14b13f77
Commit
14b13f77
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 SHPropStg* stubs.
parent
0c6f2a6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
shell32.spec
dlls/shell32/shell32.spec
+4
-0
shellole.c
dlls/shell32/shellole.c
+31
-0
No files found.
dlls/shell32/shell32.spec
View file @
14b13f77
...
@@ -253,6 +253,10 @@
...
@@ -253,6 +253,10 @@
660 stdcall -noname FileIconInit(long)
660 stdcall -noname FileIconInit(long)
680 stdcall IsUserAnAdmin()
680 stdcall IsUserAnAdmin()
685 stdcall SHPropStgCreate(ptr ptr ptr long long long ptr ptr)
688 stdcall SHPropStgReadMultiple(ptr long long ptr ptr)
689 stdcall SHPropStgWriteMultiple(ptr ptr long ptr ptr long)
704 stdcall -noname GUIDFromStringW(wstr ptr)
704 stdcall -noname GUIDFromStringW(wstr ptr)
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
...
...
dlls/shell32/shellole.c
View file @
14b13f77
...
@@ -657,3 +657,34 @@ end:
...
@@ -657,3 +657,34 @@ end:
GlobalUnlock
(
hDrop
);
GlobalUnlock
(
hDrop
);
return
i
;
return
i
;
}
}
/*************************************************************************
* SHPropStgCreate [SHELL32.685]
*/
HRESULT
WINAPI
SHPropStgCreate
(
IPropertySetStorage
*
psstg
,
REFFMTID
fmtid
,
const
CLSID
*
pclsid
,
DWORD
grfFlags
,
DWORD
grfMode
,
DWORD
dwDisposition
,
IPropertyStorage
**
ppstg
,
UINT
*
puCodePage
)
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
}
/*************************************************************************
* SHPropStgReadMultiple [SHELL32.688]
*/
HRESULT
WINAPI
SHPropStgReadMultiple
(
IPropertyStorage
*
pps
,
UINT
uCodePage
,
ULONG
cpspec
,
const
PROPSPEC
*
rgpspec
,
PROPVARIANT
*
rgvar
)
{
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
}
/*************************************************************************
* SHPropStgWriteMultiple [SHELL32.689]
*/
HRESULT
WINAPI
SHPropStgWriteMultiple
(
IPropertyStorage
*
pps
,
UINT
*
uCodePage
,
ULONG
cpspec
,
const
PROPSPEC
*
rgpspec
,
PROPVARIANT
*
rgvar
,
PROPID
propidNameFirst
)
{
FIXME
(
"stub
\n
"
);
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