mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 09:27:59 +00:00
15 lines
349 B
C
15 lines
349 B
C
|
/*
|
||
|
* clicons.c: definitions limited to tools that link against both
|
||
|
* console.c and cmdline.c.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
static const LogPolicyVtable console_cli_logpolicy_vt = {
|
||
|
console_eventlog,
|
||
|
console_askappend,
|
||
|
console_logging_error,
|
||
|
cmdline_lp_verbose,
|
||
|
};
|
||
|
LogPolicy console_cli_logpolicy[1] = {{ &console_cli_logpolicy_vt }};
|