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.

27 lines
526 B

  1. class CW3ServerControl : public CObject
  2. {
  3. public:
  4. CW3ServerControl();
  5. #define STATE_TRY_AGAIN (-1)
  6. int GetServerState();
  7. BOOL SetServerState( DWORD dwControlCode );
  8. BOOL StartServer( BOOL fOutputCommandLineInfo = FALSE );
  9. BOOL StopServer( BOOL fOutputCommandLineInfo = FALSE );
  10. BOOL PauseServer();
  11. BOOL ContinueServer();
  12. BOOL W95LaunchInetInfo();
  13. // get the inetinfo path
  14. static BOOL GetServerDirectory( CString &sz );
  15. private:
  16. BOOL m_fIsWinNT;
  17. };