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.

32 lines
552 B

  1. //
  2. // FPPriv.h
  3. //
  4. #ifndef __FP_PRIV__
  5. #define __FP_PRIV__
  6. #include <OBJBASE.h>
  7. #include <INITGUID.H>
  8. // {AAA82E75-0113-42d6-A07C-79EDBCFEE63F}
  9. DEFINE_GUID(IID_ITFPTrackEventSink,
  10. 0xaaa82e75, 0x113, 0x42d6, 0xa0, 0x7c, 0x79, 0xed, 0xbc, 0xfe, 0xe6, 0x3f);
  11. typedef enum
  12. {
  13. FPTE_STARTING = 0,
  14. FPTE_STARTED,
  15. FPTE_FINISHING,
  16. FPTE_FINISHED
  17. } FP_TRACK_EVENTS;
  18. //
  19. // ITFPTrackEventSink
  20. //
  21. DECLARE_INTERFACE_(
  22. ITFPTrackEventSink, IUnknown)
  23. {
  24. STDMETHOD (PinSignalsStop)(FT_STATE_EVENT_CAUSE why, HRESULT hrErrorCode) = 0;
  25. };
  26. #endif