Source code of Windows XP (NT5)
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.
|
|
//------------------------------------------------------------------------------ // 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); };
|