Files
easy7zip/CPP/7zip/UI/FileManager/HelpUtils.cpp
Igor Pavlov 051769bbc5 4.53 beta
2016-05-28 00:15:54 +01:00

24 lines
430 B
C++
Executable File

// HelpUtils.cpp
#include "StdAfx.h"
#include <HtmlHelp.h>
#include "Common/StringConvert.h"
#include "HelpUtils.h"
#include "ProgramLocation.h"
static LPCWSTR kHelpFileName = L"7-zip.chm::/";
void ShowHelpWindow(HWND hwnd, LPCWSTR topicFile)
{
UString path;
if (!::GetProgramFolderPath(path))
return;
path += kHelpFileName;
path += topicFile;
HtmlHelp(hwnd, GetSystemString(path), HH_DISPLAY_TOPIC, NULL);
}