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

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windows/nohelp.c')
-rw-r--r--windows/nohelp.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/windows/nohelp.c b/windows/nohelp.c
new file mode 100644
index 00000000..1b748776
--- /dev/null
+++ b/windows/nohelp.c
@@ -0,0 +1,15 @@
+/*
+ * nohelp.c: implement the has_embedded_chm() function for
+ * applications that have no help file at all, so that buildinfo.c's
+ * buildinfo string knows not to talk meaninglessly about whether the
+ * nonexistent help file is present.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <assert.h>
+
+#include "putty.h"
+
+int has_embedded_chm(void) { return -1; }