X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/21d2b241875c072a8700e838ae0da677a7b9d428..2856a1b9009fe14b762f61c824d0e8d5cc86b542:/winstuff.h?ds=sidebyside diff --git a/winstuff.h b/winstuff.h index ed12ba56..1cbe5b78 100644 --- a/winstuff.h +++ b/winstuff.h @@ -5,6 +5,20 @@ #ifndef PUTTY_WINSTUFF_H #define PUTTY_WINSTUFF_H +#include /* for FILENAME_MAX */ + +struct Filename { + char path[FILENAME_MAX]; +}; +#define f_open(filename, mode) ( fopen((filename).path, (mode)) ) + +struct FontSpec { + char name[64]; + int isbold; + int height; + int charset; +}; + /* * Global variables. Most modules declare these `extern', but * window.c will do `#define PUTTY_DO_GLOBALS' before including this @@ -201,6 +215,7 @@ void EnableSizeTip(int bEnable); /* * Exports from unicode.c. */ +struct unicode_data; void init_ucs(Config *, struct unicode_data *); #endif