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
22511c11
Commit
22511c11
authored
Apr 07, 2014
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/vfw.h: Properly declare implicit This* parameter.
parent
7e871b94
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
vfw.h
include/vfw.h
+7
-7
No files found.
include/vfw.h
View file @
22511c11
...
...
@@ -1148,8 +1148,8 @@ DECLARE_INTERFACE_(IAVIStreaming,IUnknown)
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IAVIStreaming methods ***/
STDMETHOD
(
Begin
)(
IAVIStreaming
*
iface
,
LONG
lStart
,
LONG
lEnd
,
LONG
lRate
)
PURE
;
STDMETHOD
(
End
)(
IAVIStreaming
*
iface
)
PURE
;
STDMETHOD
(
Begin
)(
THIS_
LONG
lStart
,
LONG
lEnd
,
LONG
lRate
)
PURE
;
STDMETHOD
(
End
)(
THIS
)
PURE
;
};
#undef INTERFACE
...
...
@@ -1174,11 +1174,11 @@ DECLARE_INTERFACE_(IAVIEditStream,IUnknown)
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IAVIEditStream methods ***/
STDMETHOD
(
Cut
)(
IAVIEditStream
*
iface
,
LONG
*
plStart
,
LONG
*
plLength
,
PAVISTREAM
*
ppResult
)
PURE
;
STDMETHOD
(
Copy
)(
IAVIEditStream
*
iface
,
LONG
*
plStart
,
LONG
*
plLength
,
PAVISTREAM
*
ppResult
)
PURE
;
STDMETHOD
(
Paste
)(
IAVIEditStream
*
iface
,
LONG
*
plStart
,
LONG
*
plLength
,
PAVISTREAM
pSource
,
LONG
lStart
,
LONG
lEnd
)
PURE
;
STDMETHOD
(
Clone
)(
IAVIEditStream
*
iface
,
PAVISTREAM
*
ppResult
)
PURE
;
STDMETHOD
(
SetInfo
)(
IAVIEditStream
*
iface
,
LPAVISTREAMINFOW
asi
,
LONG
size
)
PURE
;
STDMETHOD
(
Cut
)(
THIS_
LONG
*
plStart
,
LONG
*
plLength
,
PAVISTREAM
*
ppResult
)
PURE
;
STDMETHOD
(
Copy
)(
THIS_
LONG
*
plStart
,
LONG
*
plLength
,
PAVISTREAM
*
ppResult
)
PURE
;
STDMETHOD
(
Paste
)(
THIS_
LONG
*
plStart
,
LONG
*
plLength
,
PAVISTREAM
pSource
,
LONG
lStart
,
LONG
lEnd
)
PURE
;
STDMETHOD
(
Clone
)(
THIS_
PAVISTREAM
*
ppResult
)
PURE
;
STDMETHOD
(
SetInfo
)(
THIS_
LPAVISTREAMINFOW
asi
,
LONG
size
)
PURE
;
};
#undef INTERFACE
...
...
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