Richard points out that it would probably help if I committed
[sgt/putty] / putty.h
CommitLineData
374330e2 1#ifndef PUTTY_PUTTY_H
2#define PUTTY_PUTTY_H
3
ca20bfcf 4#include <stdio.h> /* for FILENAME_MAX */
5
f7f27309 6/*
7 * Global variables. Most modules declare these `extern', but
8 * window.c will do `#define PUTTY_DO_GLOBALS' before including this
9 * module, and so will get them properly defined.
10 */
11#ifndef GLOBAL
12#ifdef PUTTY_DO_GLOBALS
13#define GLOBAL
14#else
15#define GLOBAL extern
16#endif
17#endif
18
19typedef struct config_tag Config;
1709795f 20typedef struct backend_tag Backend;
887035a5 21typedef struct terminal_tag Terminal;
8df7a775 22
f7f27309 23#include "puttyps.h"
24#include "network.h"
374330e2 25
4eeb7d09 26/* Three attribute types:
27 * The ATTRs (normal attributes) are stored with the characters in the main
28 * display arrays
29 *
30 * The TATTRs (temporary attributes) are generated on the fly, they can overlap
31 * with characters but not with normal attributes.
32 *
33 * The LATTRs (line attributes) conflict with no others and only have one
34 * value per line. But on area clears the LATTR cells are set to the erase_char
35 * (or DEFAULT_ATTR + 'E')
36 *
37 * ATTR_INVALID is an illegal colour combination.
38 */
39
40#define TATTR_ACTCURS 0x4UL /* active cursor (block) */
41#define TATTR_PASCURS 0x2UL /* passive cursor (box) */
42#define TATTR_RIGHTCURS 0x1UL /* cursor-on-RHS */
374330e2 43
c9def1b8 44#define LATTR_NORM 0x00000000UL
45#define LATTR_WIDE 0x01000000UL
46#define LATTR_TOP 0x02000000UL
47#define LATTR_BOT 0x03000000UL
48#define LATTR_MODE 0x03000000UL
4eeb7d09 49#define LATTR_WRAPPED 0x10000000UL
50
51#define ATTR_INVALID 0x00FF0000UL
52
53/* Like Linux use the F000 page for direct to font. */
54#define ATTR_OEMCP 0x0000F000UL /* OEM Codepage DTF */
55#define ATTR_ACP 0x0000F100UL /* Ansi Codepage DTF */
56
57/* These are internal use overlapping with the UTF-16 surrogates */
58#define ATTR_ASCII 0x0000D800UL /* normal ASCII charset ESC ( B */
59#define ATTR_LINEDRW 0x0000D900UL /* line drawing charset ESC ( 0 */
d3cb5465 60#define ATTR_SCOACS 0x0000DA00UL /* SCO Alternate charset */
4eeb7d09 61#define ATTR_GBCHR 0x0000DB00UL /* UK variant charset ESC ( A */
62#define CSET_MASK 0x0000FF00UL /* Character set mask; MUST be 0xFF00 */
63
64#define DIRECT_CHAR(c) ((c&0xFC00)==0xD800)
65#define DIRECT_FONT(c) ((c&0xFE00)==0xF000)
66
67#define UCSERR (ATTR_LINEDRW|'a') /* UCS Format error character. */
68#define UCSWIDE 0x303F
69
5a73255e 70#define ATTR_NARROW 0x20000000UL
4eeb7d09 71#define ATTR_WIDE 0x10000000UL
72#define ATTR_BOLD 0x01000000UL
73#define ATTR_UNDER 0x02000000UL
74#define ATTR_REVERSE 0x04000000UL
75#define ATTR_BLINK 0x08000000UL
76#define ATTR_FGMASK 0x000F0000UL
77#define ATTR_BGMASK 0x00F00000UL
78#define ATTR_COLOURS 0x00FF0000UL
79#define ATTR_FGSHIFT 16
80#define ATTR_BGSHIFT 20
81
82#define ATTR_DEFAULT 0x00980000UL
83#define ATTR_DEFFG 0x00080000UL
84#define ATTR_DEFBG 0x00900000UL
8f22582c 85#define ERASE_CHAR (ATTR_DEFAULT | ATTR_ASCII | ' ')
374330e2 86#define ATTR_MASK 0xFFFFFF00UL
87#define CHAR_MASK 0x000000FFUL
4eeb7d09 88
89#define ATTR_CUR_AND (~(ATTR_BOLD|ATTR_REVERSE|ATTR_BLINK|ATTR_COLOURS))
90#define ATTR_CUR_XOR 0x00BA0000UL
374330e2 91
5a73255e 92GLOBAL int alt_pressed;
cabfd08c 93
d85548fe 94GLOBAL int session_closed;
95
1709795f 96GLOBAL int nsessions;
97GLOBAL char **sessions;
98
4eeb7d09 99GLOBAL int utf;
100GLOBAL int dbcs_screenfont;
101GLOBAL int font_codepage;
102GLOBAL int kbd_codepage;
103GLOBAL int line_codepage;
f7f27309 104GLOBAL wchar_t unitab_scoacs[256];
105GLOBAL wchar_t unitab_line[256];
106GLOBAL wchar_t unitab_font[256];
107GLOBAL wchar_t unitab_xterm[256];
108GLOBAL wchar_t unitab_oemcp[256];
4eeb7d09 109GLOBAL unsigned char unitab_ctrl[256];
110
32874aea 111#define LGXF_OVR 1 /* existing logfile overwrite */
112#define LGXF_APN 0 /* existing logfile append */
113#define LGXF_ASK -1 /* existing logfile ask */
114#define LGTYP_NONE 0 /* logmode: no logging */
115#define LGTYP_ASCII 1 /* logmode: pure ascii */
00db133f 116#define LGTYP_DEBUG 2 /* logmode: all chars of traffic */
117#define LGTYP_PACKETS 3 /* logmode: SSH data packets */
5fd04f07 118
374330e2 119typedef enum {
120 TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
a5f3e637 121 TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO, TS_PING,
122 TS_EOL
374330e2 123} Telnet_Special;
124
125typedef enum {
01c034ad 126 MBT_NOTHING,
127 MBT_LEFT, MBT_MIDDLE, MBT_RIGHT, /* `raw' button designations */
128 MBT_SELECT, MBT_EXTEND, MBT_PASTE, /* `cooked' button designations */
129 MBT_WHEEL_UP, MBT_WHEEL_DOWN /* mouse wheel */
374330e2 130} Mouse_Button;
131
132typedef enum {
133 MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
134} Mouse_Action;
135
136typedef enum {
4eeb7d09 137 VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN, VT_UNICODE
374330e2 138} VT_Mode;
139
0965bee0 140enum {
141 /*
ca20bfcf 142 * SSH ciphers (both SSH1 and SSH2)
143 */
144 CIPHER_WARN, /* pseudo 'cipher' */
145 CIPHER_3DES,
146 CIPHER_BLOWFISH,
147 CIPHER_AES, /* (SSH 2 only) */
7f1ae1d2 148 CIPHER_DES,
ca20bfcf 149 CIPHER_MAX /* no. ciphers (inc warn) */
150};
151
152enum {
153 /*
0965bee0 154 * Line discipline option states: off, on, up to the backend.
155 */
156 LD_YES, LD_NO, LD_BACKEND
157};
158
159enum {
160 /*
161 * Line discipline options which the backend might try to control.
162 */
32874aea 163 LD_EDIT, /* local line editing */
164 LD_ECHO /* local echo */
0965bee0 165};
166
b41069ff 167enum {
168 /*
169 * Close On Exit behaviours. (cfg.close_on_exit)
170 */
32874aea 171 COE_NEVER, /* Never close the window */
172 COE_NORMAL, /* Close window on "normal" (non-error) exits only */
173 COE_ALWAYS /* Always close the window */
b41069ff 174};
175
1709795f 176struct backend_tag {
51470298 177 char *(*init) (void *frontend_handle, void **backend_handle,
887035a5 178 char *host, int port, char **realhost, int nodelay);
5471d09a 179 /* back->send() returns the current amount of buffered data. */
51470298 180 int (*send) (void *handle, char *buf, int len);
5471d09a 181 /* back->sendbuffer() does the same thing but without attempting a send */
51470298 182 int (*sendbuffer) (void *handle);
183 void (*size) (void *handle, int width, int height);
184 void (*special) (void *handle, Telnet_Special code);
185 Socket(*socket) (void *handle);
186 int (*exitcode) (void *handle);
187 int (*sendok) (void *handle);
188 int (*ldisc) (void *handle, int);
b9d7bcad 189 void (*provide_ldisc) (void *handle, void *ldisc);
5471d09a 190 /*
191 * back->unthrottle() tells the back end that the front end
192 * buffer is clearing.
193 */
51470298 194 void (*unthrottle) (void *handle, int);
97db3be4 195 int default_port;
1709795f 196};
374330e2 197
297d398b 198extern struct backend_list {
89ee5268 199 int protocol;
200 char *name;
201 Backend *backend;
202} backends[];
203
f7f27309 204struct config_tag {
374330e2 205 /* Basic options */
206 char host[512];
207 int port;
c91409da 208 enum { PROT_RAW, PROT_TELNET, PROT_RLOGIN, PROT_SSH } protocol;
374330e2 209 int close_on_exit;
9ef49106 210 int warn_on_close;
32874aea 211 int ping_interval; /* in seconds */
2184a5d9 212 int tcp_nodelay;
8eebd221 213 /* Proxy options */
214 char proxy_exclude_list[512];
215 enum { PROXY_NONE, PROXY_HTTP, PROXY_SOCKS, PROXY_TELNET } proxy_type;
216 char proxy_host[512];
217 int proxy_port;
218 char proxy_username[32];
219 char proxy_password[32];
220 char proxy_telnet_command[512];
221 int proxy_socks_version;
fef97f43 222 /* SSH options */
6abbf9e3 223 char remote_cmd[512];
fd5e5847 224 char remote_cmd2[512]; /* fallback if the first fails
225 * (used internally for scp) */
32874aea 226 char *remote_cmd_ptr; /* might point to a larger command
227 * but never for loading/saving */
fd5e5847 228 char *remote_cmd_ptr2; /* might point to a larger command
229 * but never for loading/saving */
fef97f43 230 int nopty;
4ba9b64b 231 int compression;
979310f1 232 int agentfwd;
5bb641e1 233 int change_username; /* allow username switching in SSH2 */
ca20bfcf 234 int ssh_cipherlist[CIPHER_MAX];
7cca0d81 235 char keyfile[FILENAME_MAX];
32874aea 236 int sshprot; /* use v1 or v2 when both available */
cb4d4768 237 int ssh2_des_cbc; /* "des-cbc" nonstandard SSH2 cipher */
ccbfb941 238 int try_tis_auth;
f091e308 239 int try_ki_auth;
4a8fc3c4 240 int ssh_subsys; /* run a subsystem rather than a command */
fd5e5847 241 int ssh_subsys2; /* fallback to go with remote_cmd2 */
374330e2 242 /* Telnet options */
243 char termtype[32];
244 char termspeed[32];
32874aea 245 char environmt[1024]; /* VAR\tvalue\0VAR\tvalue\0\0 */
277fc55e 246 char username[100];
247 char localusername[100];
374330e2 248 int rfc_environ;
8faa456c 249 int passive_telnet;
374330e2 250 /* Keyboard options */
251 int bksp_is_delete;
252 int rxvt_homeend;
c9def1b8 253 int funky_type;
32874aea 254 int no_applic_c; /* totally disable app cursor keys */
255 int no_applic_k; /* totally disable app keypad */
c0d36a72 256 int no_mouse_rep; /* totally disable mouse reporting */
0d2086c5 257 int no_remote_resize; /* disable remote resizing */
258 int no_alt_screen; /* disable alternate screen */
259 int no_remote_wintitle; /* disable remote retitling */
260 int no_dbackspace; /* disable destructive backspace */
261 int no_remote_charset; /* disable remote charset config */
374330e2 262 int app_cursor;
263 int app_keypad;
c5e9c988 264 int nethack_keypad;
a5f3e637 265 int telnet_keyboard;
eee63b77 266 int telnet_newline;
c5e9c988 267 int alt_f4; /* is it special? */
268 int alt_space; /* is it special? */
a094ae43 269 int alt_only; /* is it special? */
0965bee0 270 int localecho;
271 int localedit;
e95edc00 272 int alwaysontop;
8f57d753 273 int fullscreenonaltenter;
c9def1b8 274 int scroll_on_key;
a094ae43 275 int scroll_on_disp;
276 int compose_key;
95bbe1ae 277 int ctrlaltkeys;
32874aea 278 char wintitle[256]; /* initial window title */
374330e2 279 /* Terminal options */
280 int savelines;
281 int dec_om;
282 int wrap_mode;
fef97f43 283 int lfhascr;
4e30ff69 284 int cursor_type; /* 0=block 1=underline 2=vertical */
c9def1b8 285 int blink_cur;
03169ad0 286 enum {
287 BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE
288 } beep;
f8a28d1f 289 enum {
290 B_IND_DISABLED, B_IND_FLASH, B_IND_STEADY
291 } beep_ind;
156686ef 292 int bellovl; /* bell overload protection active? */
293 int bellovl_n; /* number of bells to cause overload */
294 int bellovl_t; /* time interval for overload (seconds) */
295 int bellovl_s; /* period of silence to re-enable bell (s) */
03169ad0 296 char bell_wavefile[FILENAME_MAX];
c9def1b8 297 int scrollbar;
a401e5f3 298 int scrollbar_in_fullscreen;
0ed2f48e 299 enum { RESIZE_TERM, RESIZE_DISABLED, RESIZE_FONT, RESIZE_EITHER } resize_action;
c9def1b8 300 int bce;
301 int blinktext;
374330e2 302 int win_name_always;
303 int width, height;
304 char font[64];
305 int fontisbold;
306 int fontheight;
14963b8f 307 int fontcharset;
e1c8e0ed 308 char logfilename[FILENAME_MAX];
309 int logtype;
9f89f96e 310 int logxfovr;
554c540d 311 int hide_mouseptr;
57d08f2f 312 int sunken_edge;
5a73255e 313 int window_border;
e7fbcdd8 314 char answerback[256];
b44b307a 315 char printer[128];
374330e2 316 /* Colour options */
317 int try_palette;
318 int bold_colour;
319 unsigned char colours[22][3];
320 /* Selection options */
321 int mouse_is_xterm;
6908fed7 322 int rect_select;
d3a22f79 323 int rawcnp;
a7419ea4 324 int rtf_paste;
b90840c3 325 int mouse_override;
374330e2 326 short wordness[256];
c9def1b8 327 /* translations */
328 VT_Mode vtmode;
8bb92a1c 329 char line_codepage[128];
a9c02454 330 int xlat_capslockcyr;
9c964e85 331 /* X11 forwarding */
332 int x11_forward;
333 char x11_display[128];
d74d141c 334 /* port forwarding */
beefa433 335 int lport_acceptall; /* accept conns from hosts other than localhost */
336 int rport_acceptall; /* same for remote forwarded ports (SSH2 only) */
d74d141c 337 char portfwd[1024]; /* [LR]localport\thost:port\000[LR]localport\thost:port\000\000 */
2c9c6388 338 /* SSH bug compatibility modes */
339 enum {
340 BUG_AUTO, BUG_OFF, BUG_ON
341 } sshbug_ignore1, sshbug_plainpw1, sshbug_rsa1,
8e975795 342 sshbug_hmac2, sshbug_derivekey2, sshbug_rsapad2,
343 sshbug_dhgex2;
c8ee61b9 344 /* Options for pterm. Should split out into platform-dependent part. */
345 int stamp_utmp;
346 int login_shell;
239b3b36 347 int scrollbar_on_left;
348 char boldfont[64];
12994a99 349 int shadowboldoffset;
f7f27309 350};
374330e2 351
e277c42d 352/*
353 * You can compile with -DSSH_DEFAULT to have ssh by default.
354 */
355#ifndef SSH_DEFAULT
356#define DEFAULT_PROTOCOL PROT_TELNET
357#define DEFAULT_PORT 23
358#else
359#define DEFAULT_PROTOCOL PROT_SSH
360#define DEFAULT_PORT 22
361#endif
362
4017be6d 363/*
364 * Some global flags denoting the type of application.
67779be7 365 *
366 * FLAG_VERBOSE is set when the user requests verbose details.
367 *
368 * FLAG_STDERR is set in command-line applications (which have a
369 * functioning stderr that it makes sense to write to) and not in
370 * GUI applications (which don't).
371 *
372 * FLAG_INTERACTIVE is set when a full interactive shell session is
373 * being run, _either_ because no remote command has been provided
374 * _or_ because the application is GUI and can't run non-
375 * interactively.
4017be6d 376 */
67779be7 377#define FLAG_VERBOSE 0x0001
378#define FLAG_STDERR 0x0002
379#define FLAG_INTERACTIVE 0x0004
4017be6d 380GLOBAL int flags;
381
374330e2 382GLOBAL Config cfg;
e277c42d 383GLOBAL int default_protocol;
384GLOBAL int default_port;
374330e2 385
4e23b276 386struct RSAKey; /* be a little careful of scope */
387
374330e2 388/*
389 * Exports from window.c.
390 */
5a73255e 391void request_resize(int, int);
32874aea 392void do_text(Context, int, int, char *, int, unsigned long, int);
4eeb7d09 393void do_cursor(Context, int, int, char *, int, unsigned long, int);
5a73255e 394int CharWidth(Context ctx, int uc);
32874aea 395void set_title(char *);
396void set_icon(char *);
397void set_sbar(int, int, int);
f67b4e85 398Context get_ctx(void);
32874aea 399void free_ctx(Context);
400void palette_set(int, int, int, int);
401void palette_reset(void);
4eeb7d09 402void write_aclip(char *, int, int);
403void write_clip(wchar_t *, int, int);
404void get_clip(wchar_t **, int *);
32874aea 405void optimised_move(int, int, int);
01c034ad 406void set_raw_mouse_mode(int);
407Mouse_Button translate_button(Mouse_Button b);
8d5de777 408void connection_fatal(char *, ...);
32874aea 409void fatalbox(char *, ...);
1709795f 410void modalfatalbox(char *, ...);
32874aea 411void beep(int);
6f34e365 412void begin_session(void);
ec8679e9 413void sys_cursor(int x, int y);
e6346999 414void request_paste(void);
b9d7bcad 415void frontend_keypress(void *frontend);
416void ldisc_update(void *frontend, int echo, int edit);
374330e2 417#define OPTIMISE_IS_SCROLL 1
418
68f9b3d9 419void set_iconic(int iconic);
420void move_window(int x, int y);
421void set_zorder(int top);
422void refresh_window(void);
423void set_zoomed(int zoomed);
424int is_iconic(void);
425void get_window_pos(int *x, int *y);
426void get_window_pixels(int *x, int *y);
427char *get_window_title(int icon);
428
93b581bd 429void cleanup_exit(int);
430
374330e2 431/*
432 * Exports from noise.c.
433 */
32874aea 434void noise_get_heavy(void (*func) (void *, int));
435void noise_get_light(void (*func) (void *, int));
7d6ee6ff 436void noise_regular(void);
f7f27309 437void noise_ultralight(unsigned long data);
374330e2 438void random_save_seed(void);
de3df031 439void random_destroy_seed(void);
374330e2 440
441/*
a9422f39 442 * Exports from settings.c.
443 */
32874aea 444void save_settings(char *section, int do_host, Config * cfg);
445void load_settings(char *section, int do_host, Config * cfg);
a9422f39 446void get_sesslist(int allocate);
1709795f 447void do_defaults(char *, Config *);
448void registry_cleanup(void);
a9422f39 449
450/*
374330e2 451 * Exports from terminal.c.
452 */
453
887035a5 454Terminal *term_init(void);
455void term_size(Terminal *, int, int, int);
456void term_out(Terminal *);
457void term_paint(Terminal *, Context, int, int, int, int);
458void term_scroll(Terminal *, int, int);
459void term_pwron(Terminal *);
460void term_clrsb(Terminal *);
461void term_mouse(Terminal *, Mouse_Button, Mouse_Action, int,int,int,int,int);
462void term_deselect(Terminal *);
463void term_update(Terminal *);
464void term_invalidate(Terminal *);
465void term_blink(Terminal *, int set_cursor);
466void term_do_paste(Terminal *);
467int term_paste_pending(Terminal *);
468void term_paste(Terminal *);
469void term_nopaste(Terminal *);
470int term_ldisc(Terminal *, int option);
471void term_copyall(Terminal *);
472void term_reconfig(Terminal *);
473void term_seen_key_event(Terminal *);
474int from_backend(void *, int is_stderr, char *data, int len);
51470298 475void term_provide_resize_fn(Terminal *term,
476 void (*resize_fn)(void *, int, int),
477 void *resize_ctx);
374330e2 478
479/*
00db133f 480 * Exports from logging.c.
481 */
887035a5 482void logfopen();
483void logfclose();
00db133f 484void logtraffic(unsigned char c, int logmode);
485enum { PKT_INCOMING, PKT_OUTGOING };
fb89f7ff 486void log_eventlog(char *string);
00db133f 487void log_packet(int direction, int type, char *texttype, void *data, int len);
488
489/*
5e1a8e27 490 * Exports from raw.c.
491 */
492
3d9a14c9 493extern Backend raw_backend;
5e1a8e27 494
495/*
c91409da 496 * Exports from rlogin.c.
497 */
498
499extern Backend rlogin_backend;
500
501/*
374330e2 502 * Exports from telnet.c.
503 */
504
c14776e8 505extern Backend telnet_backend;
374330e2 506
507/*
c0a81592 508 * Exports from ssh.c. (NB the getline variables have to be GLOBAL
509 * so that PuTTYtel will still compile - otherwise it would depend
510 * on ssh.c.)
374330e2 511 */
512
c0a81592 513GLOBAL int (*ssh_get_line) (const char *prompt, char *str, int maxlen,
32874aea 514 int is_pw);
c0a81592 515GLOBAL int ssh_getline_pw_only;
c14776e8 516extern Backend ssh_backend;
374330e2 517
518/*
5bc238bb 519 * Exports from ldisc.c.
520 */
b9d7bcad 521void *ldisc_create(Terminal *, Backend *, void *, void *);
522void ldisc_send(void *handle, char *buf, int len, int interactive);
5bc238bb 523
524/*
5def7522 525 * Exports from ldiscucs.c.
526 */
527void lpage_send(void *, int codepage, char *buf, int len, int interactive);
528void luni_send(void *, wchar_t * widebuf, int len, int interactive);
529
530/*
374330e2 531 * Exports from sshrand.c.
532 */
533
534void random_add_noise(void *noise, int length);
535void random_init(void);
536int random_byte(void);
537void random_get_savedata(void **data, int *len);
93b581bd 538extern int random_active;
374330e2 539
540/*
541 * Exports from misc.c.
542 */
543
db9c0f86 544#include "misc.h"
374330e2 545
546/*
067a15ea 547 * Exports from version.c.
548 */
549extern char ver[];
550
551/*
4eeb7d09 552 * Exports from unicode.c.
14963b8f 553 */
4eeb7d09 554#ifndef CP_UTF8
555#define CP_UTF8 65001
556#endif
5def7522 557void init_ucs(void);
558int is_dbcs_leadbyte(int codepage, char byte);
559int mb_to_wc(int codepage, int flags, char *mbstr, int mblen,
560 wchar_t *wcstr, int wclen);
561int wc_to_mb(int codepage, int flags, wchar_t *wcstr, int wclen,
562 char *mbstr, int mblen, char *defchr, int *defused);
a9c02454 563wchar_t xlat_uskbd2cyrllic(int ch);
4eeb7d09 564int check_compose(int first, int second);
565int decode_codepage(char *cp_name);
875b193f 566char *cp_enumerate (int index);
4eeb7d09 567char *cp_name(int codepage);
a7419ea4 568void get_unitab(int codepage, wchar_t * unitab, int ftype);
14963b8f 569
570/*
8f203108 571 * Exports from mscrypto.c
572 */
573#ifdef MSCRYPTOAPI
574int crypto_startup();
575void crypto_wrapup();
576#endif
577
578/*
5c58ad2d 579 * Exports from pageantc.c
580 */
581void agent_query(void *in, int inlen, void **out, int *outlen);
582int agent_exists(void);
583
4eb24e3a 584/*
585 * Exports from wildcard.c
586 */
587const char *wc_error(int value);
588int wc_match(const char *wildcard, const char *target);
589int wc_unescape(char *output, const char *wildcard);
374330e2 590
ff2ae367 591/*
1709795f 592 * Exports from windlg.c
593 */
594void logevent(char *);
595void verify_ssh_host_key(char *host, int port, char *keytype,
596 char *keystr, char *fingerprint);
597void askcipher(char *ciphername, int cs);
598int askappend(char *filename);
599
600/*
ff2ae367 601 * Exports from console.c (that aren't equivalents to things in
602 * windlg.c).
603 */
604extern int console_batch_mode;
ff2ae367 605int console_get_line(const char *prompt, char *str, int maxlen, int is_pw);
606
b44b307a 607/*
608 * Exports from printing.c.
609 */
610typedef struct printer_enum_tag printer_enum;
611typedef struct printer_job_tag printer_job;
612printer_enum *printer_start_enum(int *nprinters);
613char *printer_get_name(printer_enum *, int);
614void printer_finish_enum(printer_enum *);
615printer_job *printer_start_job(char *printer);
616void printer_job_data(printer_job *, void *, int);
617void printer_finish_job(printer_job *);
618
c0a81592 619/*
620 * Exports from cmdline.c (and also cmdline_error(), which is
621 * defined differently in various places and required _by_
622 * cmdline.c).
623 */
624int cmdline_process_param(char *, char *, int);
625void cmdline_run_saved(void);
626extern char *cmdline_password;
627#define TOOLTYPE_FILETRANSFER 1
628extern int cmdline_tooltype;
629
630void cmdline_error(char *, ...);
631
374330e2 632#endif