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
e8ac5892
Commit
e8ac5892
authored
Nov 29, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Dec 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
propsys: Add stub for PSGetPropertyDescriptionListFromString.
parent
901fff3c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
propsys.spec
dlls/propsys/propsys.spec
+1
-1
propsys_main.c
dlls/propsys/propsys_main.c
+6
-0
propsys.idl
include/propsys.idl
+1
-0
No files found.
dlls/propsys/propsys.spec
View file @
e8ac5892
...
...
@@ -81,7 +81,7 @@
@ stub PSGetNamedPropertyFromPropertyStorage
@ stdcall PSGetPropertyDescription(ptr ptr ptr)
@ stub PSGetPropertyDescriptionByName
@ st
ub PSGetPropertyDescriptionListFromString
@ st
dcall PSGetPropertyDescriptionListFromString(ptr ptr ptr)
@ stub PSGetPropertyFromPropertyStorage
@ stub PSGetPropertyKeyFromName
@ stub PSGetPropertySystem
...
...
dlls/propsys/propsys_main.c
View file @
e8ac5892
...
...
@@ -159,6 +159,12 @@ HRESULT WINAPI PSGetPropertyDescription(REFPROPERTYKEY propkey, REFIID riid, voi
return
E_NOTIMPL
;
}
HRESULT
WINAPI
PSGetPropertyDescriptionListFromString
(
LPCWSTR
proplist
,
REFIID
riid
,
void
**
ppv
)
{
FIXME
(
"%s, %p, %p
\n
"
,
debugstr_w
(
proplist
),
riid
,
ppv
);
return
E_NOTIMPL
;
}
HRESULT
WINAPI
PSRefreshPropertySchema
(
void
)
{
FIXME
(
"
\n
"
);
...
...
include/propsys.idl
View file @
e8ac5892
...
...
@@ -802,6 +802,7 @@ cpp_quote("#define PKEYSTR_MAX (GUIDSTRING_MAX + 1 + PKEY_PIDSTR_MAX)")
cpp_quote("HRESULT WINAPI PSStringFromPropertyKey(REFPROPERTYKEY,LPWSTR,UINT);")
cpp_quote("HRESULT WINAPI PSPropertyKeyFromString(LPCWSTR,PROPERTYKEY*);")
cpp_quote("HRESULT WINAPI PSGetPropertyDescription(REFPROPERTYKEY,REFIID,void **);")
cpp_quote("HRESULT WINAPI PSGetPropertyDescriptionListFromString(LPCWSTR,REFIID,void **);")
cpp_quote("HRESULT WINAPI PSRefreshPropertySchema(void);")
/* TODO: Add remainder of the C api here */
...
...
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