mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
9 lines
195 B
C
9 lines
195 B
C
|
/*
|
||
|
* Stub methods usable by LogPolicy implementations.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
bool null_lp_verbose_no(LogPolicy *lp) { return false; }
|
||
|
bool null_lp_verbose_yes(LogPolicy *lp) { return true; }
|