Sync with trunk head
[reactos.git] / include / dxsdk / amparse.h
1
2 #ifndef __AMPARSE__
3 #define __AMPARSE__
4
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8
9 DEFINE_GUID(IID_IAMParse, 0xC47A3420, 0x005C, 0x11D2, 0x90, 0x38, 0x00, 0xA0, 0xC9, 0x69, 0x72, 0x98);
10
11 DECLARE_INTERFACE_(IAMParse, IUnknown)
12 {
13 STDMETHOD(GetParseTime) (THIS_ REFERENCE_TIME *prtCurrent) PURE;
14 STDMETHOD(SetParseTime) (THIS_ REFERENCE_TIME rtCurrent) PURE;
15 STDMETHOD(Flush) (THIS) PURE;
16 };
17
18 #ifdef __cplusplus
19 }
20 #endif
21 #endif
22