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.
|
|
//-----------------------------------------------------------------------------
//
// File: gotohelp.h
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
//
//-----------------------------------------------------------------------------
class LTAPIENTRY CGotoHelp : public CRefCount { public: virtual void Edit() = 0; virtual BOOL GotoHelp() = 0; };
class LTAPIENTRY CEspGotoHelp : public CGotoHelp { public: explicit CEspGotoHelp(UINT uiHelpId);
virtual void Edit(); virtual BOOL GotoHelp();
private: UINT m_uiHelpId; };
class LTAPIENTRY CExternalGotoHelp : public CGotoHelp { public: CExternalGotoHelp(const TCHAR *szFileName, UINT uiHelpId);
virtual void Edit(); virtual BOOL GotoHelp();
private: CLString m_strFileName; UINT m_uiHelpId; };
|