mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
923 B
28 lines
923 B
//------------------------------------------------------------------------------
|
|
// File: SkipFrm.idl
|
|
//
|
|
// Desc: Frame Skipping Results Callback Interface
|
|
//
|
|
// Copyright (c) 1999 - 2001, Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
import "unknwn.idl";
|
|
|
|
//--------------------------------------------------------------------
|
|
//
|
|
// IFrameSkipResultCallback - FrameSkipResult() is called when the
|
|
// EC_SKIP_FRAMES event finishes skipping
|
|
// frames.
|
|
//
|
|
//--------------------------------------------------------------------
|
|
[
|
|
local,
|
|
object,
|
|
uuid(7536960D-1977-4807-98EA-485F6C842A54),
|
|
pointer_default(unique)
|
|
]
|
|
interface IFrameSkipResultCallback : IUnknown {
|
|
|
|
void FrameSkipStarted([in] HRESULT hr);
|
|
void FrameSkipFinished([in] HRESULT hr);
|
|
};
|