X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/5a9eb1056517b6ee6efa526a3a6b5a21aa802648..1d009ae71b849a95c86c3117d1b8f063fda8aae5:/windefs.c diff --git a/windefs.c b/windefs.c index 88e9fe61..6c65c205 100644 --- a/windefs.c +++ b/windefs.c @@ -10,16 +10,36 @@ #include "putty.h" -char *platform_default_s(char *name) +FontSpec platform_default_fontspec(const char *name) +{ + FontSpec ret; + if (!strcmp(name, "Font")) { + strcpy(ret.name, "Courier New"); + ret.isbold = 0; + ret.charset = ANSI_CHARSET; + ret.height = 10; + } else { + ret.name[0] = '\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 *platform_default_s(const char *name) { - if (!strcmp(name, "Font")) - return "Courier New"; return NULL; } -int platform_default_i(char *name, int def) +int platform_default_i(const char *name, int def) { - if (!strcmp(name, "FontCharSet")) - return ANSI_CHARSET; return def; }