X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/bf02e82ebf5cdbe3eee6b64f6a12b2a55d26fc58..9a30e26b7801d63e4ccfe8d36169299c09b89dff:/unix/uxplink.c diff --git a/unix/uxplink.c b/unix/uxplink.c index 2778bc5a..7448f26d 100644 --- a/unix/uxplink.c +++ b/unix/uxplink.c @@ -136,6 +136,23 @@ int platform_default_i(const char *name, int def) return def; } +FontSpec platform_default_fontspec(const char *name) +{ + FontSpec ret; + *ret.name = '\0'; + return ret; +} + +Filename platform_default_filename(const char *name) +{ + Filename ret; + if (!strcmp(name, "LogFileName")) + strcpy(ret.path, "putty.log"); + else + *ret.path = '\0'; + return ret; +} + char *x_get_default(const char *key) { return NULL; /* this is a stub */