1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Stop shipping old WinHelp (.HLP) file.

The executables were already ignoring it.

This is a minimal change; PUTTY.HLP can still be built, and there's
still all the context IDs lying around.

Buildscr changes are untested.
This commit is contained in:
Jacob Nevins
2019-03-15 22:56:37 +00:00
committed by Simon Tatham
parent 67d3791de8
commit a8d3008143
5 changed files with 15 additions and 20 deletions

View File

@ -1,7 +1,5 @@
/*
* winhelp.c: centralised functions to launch Windows help files,
* and to decide whether to use .HLP or .CHM help in any given
* situation.
* winhelp.c: centralised functions to launch Windows HTML Help files.
*/
#include <stdio.h>

View File

@ -2,7 +2,8 @@
* winhelp.h - define Windows Help context names.
* Each definition has the form "winhelp-topic:halibut-topic", where:
* - "winhelp-topic" matches up with the \cfg{winhelp-topic} directives
* in the Halibut source, and is used for WinHelp;
* in the Halibut source, and was used for WinHelp (FIXME: this isn't
* used any more);
* - "halibut-topic" matches up with the Halibut keywords in the source,
* and is used for HTML Help.
*/

View File

@ -181,9 +181,7 @@ struct FontSpec *fontspec_new(
#define JUMPLISTREG_ERROR_VALUEWRITE_FAILURE 4
#define JUMPLISTREG_ERROR_INVALID_VALUE 5
#define PUTTY_HELP_FILE "putty.hlp"
#define PUTTY_CHM_FILE "putty.chm"
#define PUTTY_HELP_CONTENTS "putty.cnt"
#define GETTICKCOUNT GetTickCount
#define CURSORBLINK GetCaretBlinkTime()