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.

29 lines
670 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: _goto.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #if !defined(ESPUTIL__goto_h_INCLUDED)
  11. #define ESPUTIL__goto_h_INCLUDED
  12. class LTAPIENTRY CEspGotoFactory : public CRefCount
  13. {
  14. public:
  15. CEspGotoFactory() {};
  16. virtual CGoto * CreateGoto(const CLocation &) = 0;
  17. private:
  18. CEspGotoFactory(const CEspGotoFactory &);
  19. };
  20. void LTAPIENTRY RegisterEspGotoFactory(CEspGotoFactory *);
  21. #endif // ESPUTIL__goto_h_INCLUDED