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
47de869f
Commit
47de869f
authored
May 27, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
propsys: Forward corresponding methods to exports.
parent
d897b325
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
propsys_main.c
dlls/propsys/propsys_main.c
+5
-10
propsys.idl
include/propsys.idl
+2
-0
No files found.
dlls/propsys/propsys_main.c
View file @
47de869f
...
...
@@ -166,8 +166,7 @@ static ULONG WINAPI propsys_Release(IPropertySystem *iface)
static
HRESULT
WINAPI
propsys_GetPropertyDescription
(
IPropertySystem
*
iface
,
REFPROPERTYKEY
propkey
,
REFIID
riid
,
void
**
ppv
)
{
FIXME
(
"%p %s %p: stub
\n
"
,
propkey
,
debugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
return
PSGetPropertyDescription
(
propkey
,
riid
,
ppv
);
}
static
HRESULT
WINAPI
propsys_GetPropertyDescriptionByName
(
IPropertySystem
*
iface
,
...
...
@@ -180,8 +179,7 @@ static HRESULT WINAPI propsys_GetPropertyDescriptionByName(IPropertySystem *ifac
static
HRESULT
WINAPI
propsys_GetPropertyDescriptionListFromString
(
IPropertySystem
*
iface
,
LPCWSTR
proplist
,
REFIID
riid
,
void
**
ppv
)
{
FIXME
(
"%s %s %p: stub
\n
"
,
debugstr_w
(
proplist
),
debugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
return
PSGetPropertyDescriptionListFromString
(
proplist
,
riid
,
ppv
);
}
static
HRESULT
WINAPI
propsys_EnumeratePropertyDescriptions
(
IPropertySystem
*
iface
,
...
...
@@ -209,20 +207,17 @@ static HRESULT WINAPI propsys_FormatForDisplayAlloc(IPropertySystem *iface,
static
HRESULT
WINAPI
propsys_RegisterPropertySchema
(
IPropertySystem
*
iface
,
LPCWSTR
path
)
{
FIXME
(
"%s: stub
\n
"
,
debugstr_w
(
path
));
return
E_NOTIMPL
;
return
PSRegisterPropertySchema
(
path
);
}
static
HRESULT
WINAPI
propsys_UnregisterPropertySchema
(
IPropertySystem
*
iface
,
LPCWSTR
path
)
{
FIXME
(
"%s: stub
\n
"
,
debugstr_w
(
path
));
return
E_NOTIMPL
;
return
PSUnregisterPropertySchema
(
path
);
}
static
HRESULT
WINAPI
propsys_RefreshPropertySchema
(
IPropertySystem
*
iface
)
{
FIXME
(
"refresh: stub
\n
"
);
return
E_NOTIMPL
;
return
PSRefreshPropertySchema
();
}
static
const
IPropertySystemVtbl
propsysvtbl
=
{
...
...
include/propsys.idl
View file @
47de869f
...
...
@@ -804,6 +804,8 @@ 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);")
cpp_quote("HRESULT WINAPI PSRegisterPropertySchema(LPCWSTR);")
cpp_quote("HRESULT WINAPI PSUnregisterPropertySchema(LPCWSTR);")
/* 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