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

winnohlp.c « WINDOWS - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62ddc65c2cae54af1b0d719c6d5bbe3627bd5c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * nohelp.c: implement the has_embedded_chm() function for
 * applications that have no help file at all, so that misc.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; }