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
fc9446cb
Commit
fc9446cb
authored
Jan 04, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uncommented 'optional' attributes.
parent
b624b873
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
29 deletions
+29
-29
amstream.idl
include/amstream.idl
+7
-7
ddstream.idl
include/ddstream.idl
+9
-9
mmstream.idl
include/mmstream.idl
+13
-13
No files found.
include/amstream.idl
View file @
fc9446cb
...
...
@@ -91,7 +91,7 @@ interface IAMMultiMediaStream : IMultiMediaStream
HRESULT
Initialize
(
[
in
]
STREAM_TYPE
StreamType
,
[
in
]
DWORD
dwFlags
,
[
in
]
/*
[
optional
]
*/
IGraphBuilder
*
pFilterGraph
)
;
[
in
,
optional
]
IGraphBuilder
*
pFilterGraph
)
;
HRESULT
GetFilterGraph
(
[
out
]
IGraphBuilder
**
ppGraphBuilder
)
;
...
...
@@ -100,10 +100,10 @@ interface IAMMultiMediaStream : IMultiMediaStream
[
out
]
IMediaStreamFilter
**
ppFilter
)
;
HRESULT
AddMediaStream
(
[
in
]
/*
[
optional
]
*/
IUnknown
*
pStreamObject
,
[
in
]
/*
[
optional
]
*/
const
MSPID
*
PurposeId
,
[
in
,
optional
]
IUnknown
*
pStreamObject
,
[
in
,
optional
]
const
MSPID
*
PurposeId
,
[
in
]
DWORD
dwFlags
,
[
out
]
/*
[
optional
]
*/
IMediaStream
**
ppNewStream
)
;
[
out
,
optional
]
IMediaStream
**
ppNewStream
)
;
HRESULT
OpenFile
(
[
in
]
LPCWSTR
pszFileName
,
...
...
@@ -127,7 +127,7 @@ pointer_default(unique)
interface
IAMMediaStream
:
IMediaStream
{
HRESULT
Initialize
(
[
in
]
/*
[
optional
]
*/
IUnknown
*
pSourceObject
,
[
in
,
optional
]
IUnknown
*
pSourceObject
,
[
in
]
DWORD
dwFlags
,
[
in
]
REFMSPID
PurposeId
,
[
in
]
const
STREAM_TYPE
StreamType
)
;
...
...
@@ -231,9 +231,9 @@ interface IAMMediaTypeStream : IMediaStream
HRESULT
CreateSample
(
[
in
]
long
lSampleSize
,
[
in
]
/*
[
optional
]
*/
BYTE
*
pbBuffer
,
[
in
,
optional
]
BYTE
*
pbBuffer
,
[
in
]
DWORD
dwFlags
,
[
in
]
/*
[
optional
]
*/
IUnknown
*
pUnkOuter
,
[
in
,
optional
]
IUnknown
*
pUnkOuter
,
[
out
]
IAMMediaTypeSample
**
ppAMMediaTypeSample
)
;
HRESULT
GetStreamAllocatorRequirements
(
...
...
include/ddstream.idl
View file @
fc9446cb
...
...
@@ -44,14 +44,14 @@ pointer_default(unique)
interface
IDirectDrawMediaStream
:
IMediaStream
{
HRESULT
GetFormat
(
[
out
]
/*
[
optional
]
*/
DDSURFACEDESC
*
pDDSDCurrent
,
[
out
]
/*
[
optional
]
*/
IDirectDrawPalette
**
ppDirectDrawPalette
,
[
out
]
/*
[
optional
]
*/
DDSURFACEDESC
*
pDDSDDesired
,
[
out
]
/*
[
optional
]
*/
DWORD
*
pdwFlags
)
;
[
out
,
optional
]
DDSURFACEDESC
*
pDDSDCurrent
,
[
out
,
optional
]
IDirectDrawPalette
**
ppDirectDrawPalette
,
[
out
,
optional
]
DDSURFACEDESC
*
pDDSDDesired
,
[
out
,
optional
]
DWORD
*
pdwFlags
)
;
HRESULT
SetFormat
(
[
in
]
const
DDSURFACEDESC
*
pDDSurfaceDesc
,
[
in
]
/*
[
optional
]
*/
IDirectDrawPalette
*
pDirectDrawPalette
)
;
[
in
,
optional
]
IDirectDrawPalette
*
pDirectDrawPalette
)
;
HRESULT
GetDirectDraw
(
[
out
]
IDirectDraw
**
ppDirectDraw
)
;
...
...
@@ -60,8 +60,8 @@ interface IDirectDrawMediaStream : IMediaStream
[
in
]
IDirectDraw
*
pDirectDraw
)
;
HRESULT
CreateSample
(
[
in
]
/*
[
optional
]
*/
IDirectDrawSurface
*
pSurface
,
[
in
]
/*
[
optional
]
*/
const
RECT
*
pRect
,
[
in
,
optional
]
IDirectDrawSurface
*
pSurface
,
[
in
,
optional
]
const
RECT
*
pRect
,
[
in
]
DWORD
dwFlags
,
[
out
]
IDirectDrawStreamSample
**
ppSample
)
;
...
...
@@ -79,8 +79,8 @@ pointer_default(unique)
interface
IDirectDrawStreamSample
:
IStreamSample
{
HRESULT
GetSurface
(
[
out
]
/*
[
optional
]
*/
IDirectDrawSurface
**
ppDirectDrawSurface
,
[
out
]
/*
[
optional
]
*/
RECT
*
pRect
)
;
[
out
,
optional
]
IDirectDrawSurface
**
ppDirectDrawSurface
,
[
out
,
optional
]
RECT
*
pRect
)
;
HRESULT
SetRect
(
[
in
]
const
RECT
*
pRect
)
;
...
...
include/mmstream.idl
View file @
fc9446cb
...
...
@@ -90,8 +90,8 @@ pointer_default(unique)
interface
IMultiMediaStream
:
IUnknown
{
HRESULT
GetInformation
(
[
out
]
/*
[
optional
]
*/
char
*
pdwFlags
,
[
out
]
/*
[
optional
]
*/
STREAM_TYPE
*
pStreamType
)
;
[
out
,
optional
]
char
*
pdwFlags
,
[
out
,
optional
]
STREAM_TYPE
*
pStreamType
)
;
HRESULT
GetMediaStream
(
[
in
]
REFMSPID
idPurpose
,
...
...
@@ -132,8 +132,8 @@ interface IMediaStream : IUnknown {
[
out
]
IMultiMediaStream
**
ppMultiMediaStream
)
;
HRESULT
GetInformation
(
[
out
]
/*
[
optional
]
*/
MSPID
*
pPurposeId
,
[
out
]
/*
[
optional
]
*/
STREAM_TYPE
*
pType
)
;
[
out
,
optional
]
MSPID
*
pPurposeId
,
[
out
,
optional
]
STREAM_TYPE
*
pType
)
;
HRESULT
SetSameFormat
(
[
in
]
IMediaStream
*
pStreamThatHasDesiredFormat
,
...
...
@@ -164,21 +164,21 @@ interface IStreamSample : IUnknown {
[
in
]
IMediaStream
**
ppMediaStream
)
;
HRESULT
GetSampleTimes
(
[
out
]
/*
[
optional
]
*/
STREAM_TIME
*
pStartTime
,
[
out
]
/*
[
optional
]
*/
STREAM_TIME
*
pEndTime
,
[
out
]
/*
[
optional
]
*/
STREAM_TIME
*
pCurrentTime
)
;
[
out
,
optional
]
STREAM_TIME
*
pStartTime
,
[
out
,
optional
]
STREAM_TIME
*
pEndTime
,
[
out
,
optional
]
STREAM_TIME
*
pCurrentTime
)
;
HRESULT
SetSampleTimes
(
[
in
]
/*
[
optional
]
*/
const
STREAM_TIME
*
pStartTime
,
[
in
]
/*
[
optional
]
*/
const
STREAM_TIME
*
pEndTime
)
;
[
in
,
optional
]
const
STREAM_TIME
*
pStartTime
,
[
in
,
optional
]
const
STREAM_TIME
*
pEndTime
)
;
HRESULT
Update
(
[
in
]
DWORD
dwFlags
,
[
in
]
/*
[
optional
]
*/
HANDLE
hEvent
,
[
in
]
/*
[
optional
]
*/
PAPCFUNC
pfnAPC
,
[
in
]
/*
[
optional
]
*/
DWORD
dwAPCData
)
;
[
in
,
optional
]
HANDLE
hEvent
,
[
in
,
optional
]
PAPCFUNC
pfnAPC
,
[
in
,
optional
]
DWORD
dwAPCData
)
;
HRESULT
CompletionStatus
(
[
in
]
DWORD
dwFlags
,
[
in
]
/*
[
optional
]
*/
DWORD
dwMilliseconds
)
;
[
in
,
optional
]
DWORD
dwMilliseconds
)
;
}
;
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