diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-08-02 18:36:50 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-08-02 18:36:50 +0200 |
commit | a786dd45a4ebc6b91936b5e46d0ef0a9befc05af (patch) | |
tree | ced50966eaaf373f8733547046baf2bdc558662d /sdk/dx8sdk/Include/amparse.h | |
parent | Merge branch 'master' of https://github.com/GTAmodding/re3 into erorcun (diff) | |
download | re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.gz re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.bz2 re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.lz re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.xz re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.zst re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.zip |
Diffstat (limited to 'sdk/dx8sdk/Include/amparse.h')
-rw-r--r-- | sdk/dx8sdk/Include/amparse.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sdk/dx8sdk/Include/amparse.h b/sdk/dx8sdk/Include/amparse.h new file mode 100644 index 00000000..ce7a388d --- /dev/null +++ b/sdk/dx8sdk/Include/amparse.h @@ -0,0 +1,38 @@ +//------------------------------------------------------------------------------ +// File: AMParse.h +// +// Desc: Interface to the parser to get current time. This is useful for +// multifile playback. +// +// Copyright (c) 1996-2001, Microsoft Corporation. All rights reserved. +//------------------------------------------------------------------------------ + + +#ifndef __AMPARSE__ +#define __AMPARSE__ + +#ifdef __cplusplus +extern "C" { +#endif // __cplusplus + + +DEFINE_GUID(IID_IAMParse, +0xc47a3420, 0x005c, 0x11d2, 0x90, 0x38, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x98); + +// +// Parser interface - supported by MPEG-2 splitter filter +// +DECLARE_INTERFACE_(IAMParse, IUnknown) { + STDMETHOD(GetParseTime) (THIS_ + REFERENCE_TIME *prtCurrent + ) PURE; + STDMETHOD(SetParseTime) (THIS_ + REFERENCE_TIME rtCurrent + ) PURE; + STDMETHOD(Flush) (THIS) PURE; +}; + +#ifdef __cplusplus +} +#endif // __cplusplus +#endif // __AMPARSE__ |