WindowsXP-SP1/admin/admt/dommigsi/helputils.cpp
2020-09-30 16:53:49 +02:00

25 lines
892 B
C++

//--------------------------------------------------------------------------
// HelpUtils.cpp: implementation of the HelpUtils class.
//
// (c) Copyright 1999, Mission Critical Software, Inc. All Rights Reserved.
//
// Proprietary and confidential to Mission Critical Software, Inc.
//--------------------------------------------------------------------------
#include "stdafx.h"
#include <McString.h>
#include <GuiUtils.h>
#include "HelpUtils.h"
#include <HtmlHelp.h>
//--------------------------------------------------------------------------
//
//--------------------------------------------------------------------------
HRESULT
HelpUtils::ShowHelpTopic(HWND hWnd, UINT nHelpTopicID)
{
McString::String mcstrHelpPathName = GuiUtils::GetHelpPathName();
::HtmlHelp(hWnd, mcstrHelpPathName.getWide(), HH_HELP_CONTEXT, nHelpTopicID);
return S_OK;
}