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

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/UI/FileManager/HelpUtils.cpp')
-rwxr-xr-xCPP/7zip/UI/FileManager/HelpUtils.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/CPP/7zip/UI/FileManager/HelpUtils.cpp b/CPP/7zip/UI/FileManager/HelpUtils.cpp
index c2bf49a5..a1c17399 100755
--- a/CPP/7zip/UI/FileManager/HelpUtils.cpp
+++ b/CPP/7zip/UI/FileManager/HelpUtils.cpp
@@ -10,6 +10,11 @@
static LPCWSTR kHelpFileName = L"7-zip.chm::/";
+#ifdef UNDER_CE
+void ShowHelpWindow(HWND, LPCWSTR)
+{
+}
+#else
void ShowHelpWindow(HWND hwnd, LPCWSTR topicFile)
{
UString path;
@@ -19,5 +24,4 @@ void ShowHelpWindow(HWND hwnd, LPCWSTR topicFile)
path += topicFile;
HtmlHelp(hwnd, GetSystemString(path), HH_DISPLAY_TOPIC, NULL);
}
-
-
+#endif