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.

27 lines
923 B

  1. //------------------------------------------------------------------------------
  2. // File: SkipFrm.idl
  3. //
  4. // Desc: Frame Skipping Results Callback Interface
  5. //
  6. // Copyright (c) 1999 - 2001, Microsoft Corporation. All rights reserved.
  7. //------------------------------------------------------------------------------
  8. import "unknwn.idl";
  9. //--------------------------------------------------------------------
  10. //
  11. // IFrameSkipResultCallback - FrameSkipResult() is called when the
  12. // EC_SKIP_FRAMES event finishes skipping
  13. // frames.
  14. //
  15. //--------------------------------------------------------------------
  16. [
  17. local,
  18. object,
  19. uuid(7536960D-1977-4807-98EA-485F6C842A54),
  20. pointer_default(unique)
  21. ]
  22. interface IFrameSkipResultCallback : IUnknown {
  23. void FrameSkipStarted([in] HRESULT hr);
  24. void FrameSkipFinished([in] HRESULT hr);
  25. };