Leaked source code of windows server 2003
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.

43 lines
699 B

  1. /*++
  2. Copyright (c) 1985 - 1999, Microsoft Corporation
  3. Module Name:
  4. tmgrevcb.h
  5. Abstract:
  6. This file defines the CThreadMgrEventSinkCallBack Class.
  7. Author:
  8. Revision History:
  9. Notes:
  10. --*/
  11. #ifndef _TMGREVCB_H_
  12. #define _TMGREVCB_H_
  13. class CThreadMgrEventSinkCallBack : public CThreadMgrEventSink
  14. {
  15. public:
  16. CThreadMgrEventSinkCallBack() : CThreadMgrEventSink(NULL, ThreadMgrEventSinkCallback, NULL) {};
  17. void SetCallbackDataPointer(void* pv)
  18. {
  19. SetCallbackPV(pv);
  20. };
  21. //
  22. // Callbacks
  23. //
  24. private:
  25. static HRESULT ThreadMgrEventSinkCallback(UINT uCode, ITfContext* pic, void* pv);
  26. };
  27. #endif // _TMGREVCB_H_