Commit f6bcf23d authored by Michael Günnewig's avatar Michael Günnewig Committed by Alexandre Julliard

Added macros for AVIFileClose and AVIStreamClose.

parent 254e7484
......@@ -1081,6 +1081,10 @@ LONG WINAPI AVIStreamLength(PAVISTREAM iface);
LONG WINAPI AVIStreamSampleToTime(PAVISTREAM pstream, LONG lSample);
LONG WINAPI AVIStreamTimeToSample(PAVISTREAM pstream, LONG lTime);
#define AVIFileClose(pavi) \
AVIFileRelease(pavi)
#define AVIStreamClose(pavi) \
AVIStreamRelease(pavi);
#define AVIStreamEnd(pavi) \
(AVIStreamStart(pavi) + AVIStreamLength(pavi))
#define AVIStreamEndTime(pavi) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment