зеркало из https://github.com/github/putty.git
15 строки
349 B
C
15 строки
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 }};
|