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
bfd2c040
Commit
bfd2c040
authored
Nov 25, 2021
by
Jactry Zeng
Committed by
Alexandre Julliard
Nov 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add ISharedPropertyGroupManager interface.
Signed-off-by:
Jactry Zeng
<
jzeng@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3b375843
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
comsvcs.idl
include/comsvcs.idl
+63
-0
No files found.
include/comsvcs.idl
View file @
bfd2c040
...
...
@@ -37,6 +37,8 @@ typedef DWORD_PTR TRANSID;
]
library
COMSVCSLib
{
importlib
(
"stdole2.tlb"
)
;
[
object
,
hidden
,
...
...
@@ -96,4 +98,65 @@ library COMSVCSLib
{
[
default
]
interface
IDispenserManager
;
}
;
[
object
,
hidden
,
local
,
uuid
(
2
a005c01
-
a5de
-
11
cf
-
9
e66
-
00
aa00a3f464
),
pointer_default
(
unique
)
]
interface
ISharedProperty
:
IDispatch
{
[
id
(
DISPID_VALUE
),
propget
]
HRESULT
Value
(
[
out
,
retval
]
VARIANT
*
value
)
;
[
id
(
DISPID_VALUE
),
propput
]
HRESULT
Value
(
[
in
]
VARIANT
value
)
;
}
[
object
,
hidden
,
local
,
uuid
(
2
a005c07
-
a5de
-
11
cf
-
9
e66
-
00
aa00a3f464
),
pointer_default
(
unique
)
]
interface
ISharedPropertyGroup
:
IDispatch
{
[
id
(
0
x00000001
)
]
HRESULT
CreatePropertyByPosition
(
[
in
]
int
index
,
[
out
]
VARIANT_BOOL
*
exists
,
[
out
,
retval
]
ISharedProperty
**
property
)
;
[
id
(
0
x00000002
),
propget
]
HRESULT
PropertyByPosition
(
[
in
]
int
index
,
[
out
,
retval
]
ISharedProperty
**
property
)
;
[
id
(
0
x00000003
)
]
HRESULT
CreateProperty
(
[
in
]
BSTR
name
,
[
out
]
VARIANT_BOOL
*
exists
,
[
out
,
retval
]
ISharedProperty
**
property
)
;
[
id
(
0
x00000004
),
propget
]
HRESULT
Property
(
[
in
]
BSTR
name
,
[
out
,
retval
]
ISharedProperty
**
property
)
;
}
[
object
,
hidden
,
local
,
uuid
(
2
a005c0d
-
a5de
-
11
cf
-
9
e66
-
00
aa00a3f464
),
pointer_default
(
unique
)
]
interface
ISharedPropertyGroupManager
:
IDispatch
{
[
id
(
0
x00000001
)
]
HRESULT
CreatePropertyGroup
(
[
in
]
BSTR
name
,
[
in
,
out
]
LONG
*
isolation
,
[
in
,
out
]
LONG
*
release
,
[
out
]
VARIANT_BOOL
*
exists
,
[
out
,
retval
]
ISharedPropertyGroup
**
group
)
;
[
id
(
0
x00000002
),
propget
]
HRESULT
Group
(
[
in
]
BSTR
name
,
[
out
,
retval
]
ISharedPropertyGroup
**
group
)
;
[
id
(
DISPID_NEWENUM
),
propget
]
HRESULT
_NewEnum
(
[
out
,
retval
]
IUnknown
**
retval
)
;
}
[
uuid
(
2
a005c11
-
a5de
-
11
cf
-
9
e66
-
00
aa00a3f464
),
progid
(
"MTxSpm.SharedPropertyGroupManager.1"
),
vi_progid
(
"MTxSpm.SharedPropertyGroupManager"
),
threading
(
both
)
]
coclass
SharedPropertyGroupManager
{
[
default
]
interface
ISharedPropertyGroupManager
;
}
}
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