X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=winstuff.h;h=90c03481d689af58dc5f2d3cd9ce8df26bd07d5e;hb=4756c15fc9556e2f29bdc65594ea15892f9b5d35;hp=8c994c03079c9a00e091d37917c9669ed3691631;hpb=ffff6f32c71a218d847c4cd6278778ac8a704902;p=PuTTY.git diff --git a/winstuff.h b/winstuff.h index 8c994c03..90c03481 100644 --- a/winstuff.h +++ b/winstuff.h @@ -18,7 +18,12 @@ #endif #endif -typedef struct config_tag Config; /* duplicated from putty.h */ +#ifndef DONE_TYPEDEFS +#define DONE_TYPEDEFS +typedef struct config_tag Config; +typedef struct backend_tag Backend; +typedef struct terminal_tag Terminal; +#endif #define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY" #define PUTTY_REG_PARENT "Software\\SimonTatham" @@ -45,6 +50,20 @@ GLOBAL HWND logbox; */ GLOBAL HINSTANCE hinst; +/* + * Details of the help file. + */ +GLOBAL char *help_path; +GLOBAL int help_has_contents; + +/* + * The terminal and logging context are notionally local to the + * Windows front end, but they must be shared between window.c and + * windlg.c. + */ +GLOBAL Terminal *term; +GLOBAL void *logctx; + /* * 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 @@ -64,6 +83,11 @@ GLOBAL HINSTANCE hinst; */ #define SELECTION_NUL_TERMINATED 1 +/* + * On Windows, copying to the clipboard terminates lines with CRLF. + */ +#define SEL_NL { 13, 10 } + /* * Exports from winctrls.c. */ @@ -164,13 +188,4 @@ void force_normal(HWND hwnd); void UpdateSizeTip(HWND src, int cx, int cy); void EnableSizeTip(int bEnable); -/* - * Unicode and multi-byte character handling stuff. - */ -#define is_dbcs_leadbyte(cp, c) IsDBCSLeadByteEx(cp, c) -#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) - #endif