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.

47 lines
727 B

  1. /*++
  2. Copyright (c) 1999-2000 Microsoft Corporation
  3. Module Name:
  4. waslaunch.hxx
  5. Abstract:
  6. Handler class for listening to launch requests from WAS for inetinfo.
  7. Author:
  8. Emily Kruglick (EmilyK) 6-14-2000
  9. Revision History:
  10. --*/
  11. #ifndef _WASLAUNCH__H_
  12. #define _WASLAUNCH__H_
  13. // CLASS W3SVCLauncher
  14. class W3SVCLauncher
  15. {
  16. private:
  17. HANDLE m_hW3SVCThread;
  18. HANDLE m_hW3SVCStartEvent;
  19. DWORD m_dwW3SVCThreadId;
  20. BOOL m_bShutdown;
  21. public:
  22. W3SVCLauncher();
  23. ~W3SVCLauncher();
  24. DWORD StartListening();
  25. VOID StopListening();
  26. BOOL StillRunning();
  27. HANDLE GetLaunchEvent();
  28. }; // end of W3SVCLauncher
  29. #endif // _WASLAUNCH_H_