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

Roman Pompejus's patch to allow you to automatically select

overwrite or append in logging mode.

[originally from svn r1049]
This commit is contained in:
Simon Tatham
2001-04-16 15:58:43 +00:00
parent e259c7df5c
commit 639ab4c068
4 changed files with 39 additions and 4 deletions

View File

@ -83,6 +83,9 @@ GLOBAL int seen_disp_event;
GLOBAL int session_closed;
#define LGXF_OVR 1 /* existing logfile overwrite */
#define LGXF_APN 0 /* existing logfile append */
#define LGXF_ASK -1 /* existing logfile ask */
#define LGTYP_NONE 0 /* logmode: no logging */
#define LGTYP_ASCII 1 /* logmode: pure ascii */
#define LGTYP_DEBUG 2 /* logmode: all chars of taffic */
@ -237,6 +240,7 @@ typedef struct {
int fontcharset;
char logfilename[FILENAME_MAX];
int logtype;
int logxfovr;
int hide_mouseptr;
char answerback[256];
/* Colour options */