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
aaa19088
Commit
aaa19088
authored
Oct 15, 2007
by
Bang Jun-young
Committed by
Alexandre Julliard
Oct 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avifil32: Fix prototype for AVIStreamFindSample() to match the PSDK.
parent
6ab44c80
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
api.c
dlls/avifil32/api.c
+1
-1
vfw.h
include/vfw.h
+1
-1
No files found.
dlls/avifil32/api.c
View file @
aaa19088
...
...
@@ -550,7 +550,7 @@ HRESULT WINAPI AVIStreamInfoW(PAVISTREAM pstream, LPAVISTREAMINFOW asi,
* AVIStreamFindSample (AVIFIL32.@)
* AVIStreamFindSample (AVIFILE.163)
*/
HRESULT
WINAPI
AVIStreamFindSample
(
PAVISTREAM
pstream
,
LONG
pos
,
DWORD
flags
)
LONG
WINAPI
AVIStreamFindSample
(
PAVISTREAM
pstream
,
LONG
pos
,
LONG
flags
)
{
TRACE
(
"(%p,%d,0x%X)
\n
"
,
pstream
,
pos
,
flags
);
...
...
include/vfw.h
View file @
aaa19088
...
...
@@ -1041,7 +1041,7 @@ HRESULT WINAPI AVIStreamCreate(PAVISTREAM*,LONG,LONG,CLSID*);
HRESULT
WINAPI
AVIStreamInfoA
(
PAVISTREAM
iface
,
AVISTREAMINFOA
*
asi
,
LONG
size
);
HRESULT
WINAPI
AVIStreamInfoW
(
PAVISTREAM
iface
,
AVISTREAMINFOW
*
asi
,
LONG
size
);
#define AVIStreamInfo WINELIB_NAME_AW(AVIStreamInfo)
HRESULT
WINAPI
AVIStreamFindSample
(
PAVISTREAM
pstream
,
LONG
pos
,
DWORD
flags
);
LONG
WINAPI
AVIStreamFindSample
(
PAVISTREAM
pstream
,
LONG
pos
,
LONG
flags
);
HRESULT
WINAPI
AVIStreamReadFormat
(
PAVISTREAM
iface
,
LONG
pos
,
LPVOID
format
,
LONG
*
formatsize
);
HRESULT
WINAPI
AVIStreamSetFormat
(
PAVISTREAM
iface
,
LONG
pos
,
LPVOID
format
,
LONG
formatsize
);
HRESULT
WINAPI
AVIStreamRead
(
PAVISTREAM
iface
,
LONG
start
,
LONG
samples
,
LPVOID
buffer
,
LONG
buffersize
,
LONG
*
bytesread
,
LONG
*
samplesread
);
...
...
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