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.

10 lines
363 B

  1. // Copyright (c) 1997 Microsoft Corporation. All Rights Reserved.
  2. EXTERN_GUID(IID_IAMFilterGraphCallback,0x56a868fd,0x0ad4,0x11ce,0xb0,0xa3,0x0,0x20,0xaf,0x0b,0xa7,0x70);
  3. interface IAMFilterGraphCallback : IUnknown
  4. {
  5. // S_OK means rendering complete, S_FALSE means "retry now".
  6. virtual HRESULT UnableToRender(IPin *pPin) = 0;
  7. // other methods?
  8. };