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:
4
putty.h
4
putty.h
@ -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 */
|
||||
|
Reference in New Issue
Block a user