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.
|
|
/*++
Copyright (C) 1996-1999 Microsoft Corporation
Module Name:
GOTOHELP.H
History:
--*/ 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; };
|