mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 18:07:59 +00:00
26 lines
415 B
C
26 lines
415 B
C
|
/*
|
||
|
* windefs.c: default settings that are specific to Windows.
|
||
|
*/
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <commctrl.h>
|
||
|
|
||
|
#include "winstuff.h"
|
||
|
#include "puttymem.h"
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
char *platform_default_s(char *name)
|
||
|
{
|
||
|
if (!strcmp(name, "Font"))
|
||
|
return "Courier New";
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
int platform_default_i(char *name, int def)
|
||
|
{
|
||
|
if (!strcmp(name, "FontCharSet"))
|
||
|
return ANSI_CHARSET;
|
||
|
return def;
|
||
|
}
|