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
b809a3fe
Commit
b809a3fe
authored
May 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
May 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add definition of IKsControl interface in dmksctrl.h.
parent
efc865a0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
0 deletions
+79
-0
dmksctrl.h
include/dmksctrl.h
+79
-0
No files found.
include/dmksctrl.h
View file @
b809a3fe
...
@@ -21,6 +21,85 @@
...
@@ -21,6 +21,85 @@
#ifndef _DMKSCTRL_
#ifndef _DMKSCTRL_
#define _DMKSCTRL_
#define _DMKSCTRL_
#include <pshpack8.h>
#include <objbase.h>
#ifndef _KS_
#define _KS_
typedef
struct
{
union
{
struct
{
GUID
Set
;
ULONG
Id
;
ULONG
Flags
;
}
DUMMYSTRUCTNAME
;
LONGLONG
Alignment
;
}
DUMMYUNIONNAME
;
}
KSIDENTIFIER
,
*
PKSIDENTIFIER
;
typedef
KSIDENTIFIER
KSPROPERTY
,
*
PKSPROPERTY
,
KSMETHOD
,
*
PKSMETHOD
,
KSEVENT
,
*
PKSEVENT
;
#define KSMETHOD_TYPE_NONE 0x00000000
#define KSMETHOD_TYPE_READ 0x00000001
#define KSMETHOD_TYPE_WRITE 0x00000002
#define KSMETHOD_TYPE_MODIFY 0x00000003
#define KSMETHOD_TYPE_SOURCE 0x00000004
#define KSMETHOD_TYPE_SEND 0x00000001
#define KSMETHOD_TYPE_SETSUPPORT 0x00000100
#define KSMETHOD_TYPE_BASICSUPPORT 0x00000200
#define KSPROPERTY_TYPE_GET 0x00000001
#define KSPROPERTY_TYPE_SET 0x00000002
#define KSPROPERTY_TYPE_SETSUPPORT 0x00000100
#define KSPROPERTY_TYPE_BASICSUPPORT 0x00000200
#define KSPROPERTY_TYPE_RELATIONS 0x00000400
#define KSPROPERTY_TYPE_SERIALIZESET 0x00000800
#define KSPROPERTY_TYPE_UNSERIALIZESET 0x00001000
#define KSPROPERTY_TYPE_SERIALIZERAW 0x00002000
#define KSPROPERTY_TYPE_UNSERIALIZERAW 0x00004000
#define KSPROPERTY_TYPE_SERIALIZESIZE 0x00008000
#define KSPROPERTY_TYPE_DEFAULTVALUES 0x00010000
#define KSPROPERTY_TYPE_TOPOLOGY 0x10000000
#define INTERFACE IKsControl
DECLARE_INTERFACE_
(
IKsControl
,
IUnknown
)
{
/*** IUnknown methods ***/
STDMETHOD_
(
HRESULT
,
QueryInterface
)(
THIS_
REFIID
riid
,
void
**
ppvObject
)
PURE
;
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IKsControl methods ***/
STDMETHOD
(
KsProperty
)(
THIS_
PKSPROPERTY
Property
,
ULONG
PropertyLength
,
LPVOID
PropertyData
,
ULONG
DataLength
,
ULONG
*
BytesReturned
)
PURE
;
STDMETHOD
(
KsMethod
)(
THIS_
PKSMETHOD
Method
,
ULONG
MethodLength
,
LPVOID
MethodData
,
ULONG
DataLength
,
ULONG
*
BytesReturned
)
PURE
;
STDMETHOD
(
KsEvent
)(
THIS_
PKSEVENT
Event
,
ULONG
EventLength
,
LPVOID
EventData
,
ULONG
DataLength
,
ULONG
*
BytesReturned
)
PURE
;
};
#undef INTERFACE
#if !defined(__cplusplus) || defined(CINTERFACE)
/*** IUnknown methods ***/
#define IKsControl_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
#define IKsControl_AddRef(p) (p)->lpVtbl->AddRef(p)
#define IKsControl_Release(p) (p)->lpVtbl->Release(p)
/*** IKsControl methods ***/
#define IKsControl_KsProperty(p,a,b,c,d,e) (p)->lpVtbl->KsProperty(p,a,b,c,d,e)
#define IKsControl_KsMethod(p,a,b,c,d,e) (p)->lpVtbl->KsMethod(p,a,b,c,d,e)
#define IKsControl_KsEvent(p,a,b,c,d,e) (p)->lpVtbl->KsEvent(p,a,b,c,d,e)
#endif
#endif
/* _KS_ */
#include <poppack.h>
DEFINE_GUID
(
IID_IKsControl
,
0x28f54685
,
0x06fd
,
0x11d2
,
0xb2
,
0x7a
,
0x00
,
0xa0
,
0xc9
,
0x22
,
0x31
,
0x96
);
#ifndef _KSMEDIA_
#ifndef _KSMEDIA_
DEFINE_GUID
(
KSDATAFORMAT_SUBTYPE_MIDI
,
0x1d262760
,
0xe957
,
0x11cf
,
0xa5
,
0xd6
,
0x28
,
0xdb
,
0x04
,
0xc1
,
0x00
,
0x00
);
DEFINE_GUID
(
KSDATAFORMAT_SUBTYPE_MIDI
,
0x1d262760
,
0xe957
,
0x11cf
,
0xa5
,
0xd6
,
0x28
,
0xdb
,
0x04
,
0xc1
,
0x00
,
0x00
);
...
...
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