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

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. GOTO.H
  5. History:
  6. --*/
  7. #pragma once
  8. class LTAPIENTRY CGoto : public CRefCount
  9. {
  10. public:
  11. CGoto() {};
  12. virtual void Edit() = 0;
  13. virtual BOOL Go() = 0;
  14. private:
  15. CGoto(const CGoto &);
  16. };
  17. #pragma warning(disable:4251)
  18. class LTAPIENTRY CShellGoto : public CGoto
  19. {
  20. public:
  21. CShellGoto(const TCHAR *szFileName);
  22. virtual void Edit();
  23. virtual BOOL Go();
  24. private:
  25. CLString m_strFileName;
  26. };
  27. #pragma warning(default:4251)