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
773 B

  1. //
  2. // tscapp.h
  3. //
  4. // Definition of CTscApp
  5. // Ts Client Shell app logic
  6. //
  7. // Copyright(C) Microsoft Corporation 2000
  8. // Author: Nadim Abdo (nadima)
  9. //
  10. //
  11. #ifndef _tscapp_h_
  12. #define _tscapp_h_
  13. #include "contwnd.h"
  14. class CTscApp
  15. {
  16. public:
  17. CTscApp();
  18. ~CTscApp();
  19. //
  20. // Public methods
  21. //
  22. BOOL StartShell(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  23. LPTSTR lpszCmdLine);
  24. BOOL EndShell();
  25. HWND GetTscDialogHandle();
  26. private:
  27. BOOL InitSettings(HINSTANCE hInstance);
  28. BOOL CreateRDdir();
  29. HINSTANCE _hInst;
  30. CContainerWnd* _pWnd;
  31. CSH* _pShellUtil;
  32. CTscSettings* _pTscSet;
  33. BOOL _fAutoSaveSettings;
  34. };
  35. #endif //_tscapp_h_