Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e9cc5426
Commit
e9cc5426
authored
Nov 25, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IAMStreamControl definition.
parent
2c945b01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
axextend.idl
include/axextend.idl
+38
-0
No files found.
include/axextend.idl
View file @
e9cc5426
...
...
@@ -1106,6 +1106,44 @@ interface IResourceManager : IUnknown
}
typedef
enum
AM_STREAM_INFO_FLAGS
{
AM_STREAM_INFO_START_DEFINED
=
0
x01
,
AM_STREAM_INFO_STOP_DEFINED
=
0
x02
,
AM_STREAM_INFO_DISCARDING
=
0
x04
,
AM_STREAM_INFO_STOP_SEND_EXTRA
=
0
x10
}
AM_STREAM_INFO_FLAGS
;
typedef
struct
AM_STREAM_INFO
{
REFERENCE_TIME
tStart
;
REFERENCE_TIME
tStop
;
DWORD
dwStartCookie
;
DWORD
dwStopCookie
;
DWORD
dwFlags
;
}
AM_STREAM_INFO
;
[
local
,
object
,
uuid
(
36b73881
-
c2c8
-
11
cf
-
8b46
-
00805
f6cef60
),
pointer_default
(
unique
)
]
interface
IAMStreamControl
:
IUnknown
{
HRESULT
StartAt
(
[
in
]
const
REFERENCE_TIME
*
ptStart
,
[
in
]
DWORD
dwCookie
)
;
HRESULT
StopAt
(
[
in
]
const
REFERENCE_TIME
*
ptStop
,
[
in
]
BOOL
bSendExtra
,
[
in
]
DWORD
dwCookie
)
;
HRESULT
GetInfo
(
[
out
]
AM_STREAM_INFO
*
pInfo
)
;
}
cpp_quote
(
"#ifndef _IKsPropertySet_"
)
cpp_quote
(
"#define _IKsPropertySet_"
)
cpp_quote
(
"#define KSPROPERTY_SUPPORT_GET 1"
)
...
...
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