Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HelpUtils.cpp « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bae2365e30807063ace6b707bda04b690110dd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// HelpUtils.cpp

#include "StdAfx.h"

#include "HelpUtils.h"

#if defined(UNDER_CE) || !defined(_WIN32)

void ShowHelpWindow(HWND, LPCWSTR)
{
}

#else

#include <HtmlHelp.h>

#include "../../../Common/StringConvert.h"

#include "../../../Windows/DLL.h"

static LPCWSTR kHelpFileName = L"7-zip.chm::/";

void ShowHelpWindow(HWND hwnd, LPCWSTR topicFile)
{
  FString path = NWindows::NDLL::GetModuleDirPrefix();
  HtmlHelp(hwnd, GetSystemString(fs2us(path) + kHelpFileName + topicFile), HH_DISPLAY_TOPIC, 0);
}

#endif