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.

30 lines
516 B

  1. //***************************************************************************
  2. //
  3. // File:
  4. //
  5. // Module: MS SNMP Provider
  6. //
  7. // Purpose:
  8. //
  9. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  10. //
  11. //***************************************************************************
  12. class CNotifyThread : public CThread
  13. {
  14. private:
  15. HANDLE m_doneEvt;
  16. public:
  17. CNotifyThread(HANDLE* evtsarray, ULONG arraylen);
  18. virtual ~CNotifyThread();
  19. SCODE Process();
  20. };