X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/0f351587f770f75328b5d6eeee5d3cfeef734bca..6b78788aeda49ad942a13e736cda2cf282432d78:/winstuff.h diff --git a/winstuff.h b/winstuff.h index d5c08a20..d55fc0f5 100644 --- a/winstuff.h +++ b/winstuff.h @@ -18,8 +18,6 @@ #endif #endif -typedef struct config_tag Config; /* duplicated from putty.h */ - #define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY" #define PUTTY_REG_PARENT "Software\\SimonTatham" #define PUTTY_REG_PARENT_CHILD "PuTTY" @@ -46,6 +44,12 @@ GLOBAL HWND logbox; GLOBAL HINSTANCE hinst; /* + * Details of the help file. + */ +GLOBAL char *help_path; +GLOBAL int help_has_contents; + +/* * I've just looked in the windows standard headr files for WM_USER, there * are hundreds of flags defined using the form WM_USER+123 so I've * renumbered this NETEVENT value and the two in window.c @@ -176,6 +180,6 @@ void EnableSizeTip(int bEnable); #define mb_to_wc(cp, flags, mbstr, mblen, wcstr, wclen) \ MultiByteToWideChar(cp, flags, mbstr, mblen, wcstr, wclen) #define wc_to_mb(cp, flags, wcstr, wclen, mbstr, mblen, def, defused) \ - WideCharToMultiByte(cp, flags, mbstr, mblen, wcstr, wclen, def,defused) + WideCharToMultiByte(cp, flags, wcstr, wclen, mbstr, mblen, def,defused) #endif