1999-01-08 16:02:13 +03:00
|
|
|
#ifndef PUTTY_PUTTY_H
|
|
|
|
#define PUTTY_PUTTY_H
|
|
|
|
|
2000-10-23 14:32:37 +04:00
|
|
|
#include "network.h"
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
#define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
|
2000-09-25 19:47:57 +04:00
|
|
|
#define PUTTY_REG_PARENT "Software\\SimonTatham"
|
|
|
|
#define PUTTY_REG_PARENT_CHILD "PuTTY"
|
|
|
|
#define PUTTY_REG_GPARENT "Software"
|
|
|
|
#define PUTTY_REG_GPARENT_CHILD "SimonTatham"
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables. Most modules declare these `extern', but
|
|
|
|
* window.c will do `#define PUTTY_DO_GLOBALS' before including this
|
|
|
|
* module, and so will get them properly defined.
|
|
|
|
*/
|
|
|
|
#ifdef PUTTY_DO_GLOBALS
|
|
|
|
#define GLOBAL
|
|
|
|
#else
|
|
|
|
#define GLOBAL extern
|
|
|
|
#endif
|
|
|
|
|
2001-05-10 12:34:20 +04:00
|
|
|
/* Three attribute types:
|
|
|
|
* The ATTRs (normal attributes) are stored with the characters in the main
|
|
|
|
* display arrays
|
|
|
|
*
|
|
|
|
* The TATTRs (temporary attributes) are generated on the fly, they can overlap
|
|
|
|
* with characters but not with normal attributes.
|
|
|
|
*
|
|
|
|
* The LATTRs (line attributes) conflict with no others and only have one
|
|
|
|
* value per line. But on area clears the LATTR cells are set to the erase_char
|
|
|
|
* (or DEFAULT_ATTR + 'E')
|
|
|
|
*
|
|
|
|
* ATTR_INVALID is an illegal colour combination.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define TATTR_ACTCURS 0x4UL /* active cursor (block) */
|
|
|
|
#define TATTR_PASCURS 0x2UL /* passive cursor (box) */
|
|
|
|
#define TATTR_RIGHTCURS 0x1UL /* cursor-on-RHS */
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-07-26 16:13:51 +04:00
|
|
|
#define LATTR_NORM 0x00000000UL
|
|
|
|
#define LATTR_WIDE 0x01000000UL
|
|
|
|
#define LATTR_TOP 0x02000000UL
|
|
|
|
#define LATTR_BOT 0x03000000UL
|
|
|
|
#define LATTR_MODE 0x03000000UL
|
2001-05-10 12:34:20 +04:00
|
|
|
#define LATTR_WRAPPED 0x10000000UL
|
|
|
|
|
|
|
|
#define ATTR_INVALID 0x00FF0000UL
|
|
|
|
|
|
|
|
/* Like Linux use the F000 page for direct to font. */
|
|
|
|
#define ATTR_OEMCP 0x0000F000UL /* OEM Codepage DTF */
|
|
|
|
#define ATTR_ACP 0x0000F100UL /* Ansi Codepage DTF */
|
|
|
|
|
|
|
|
/* These are internal use overlapping with the UTF-16 surrogates */
|
|
|
|
#define ATTR_ASCII 0x0000D800UL /* normal ASCII charset ESC ( B */
|
|
|
|
#define ATTR_LINEDRW 0x0000D900UL /* line drawing charset ESC ( 0 */
|
2001-05-19 18:12:41 +04:00
|
|
|
#define ATTR_SCOACS 0x0000DA00UL /* SCO Alternate charset */
|
2001-05-10 12:34:20 +04:00
|
|
|
#define ATTR_GBCHR 0x0000DB00UL /* UK variant charset ESC ( A */
|
|
|
|
#define CSET_MASK 0x0000FF00UL /* Character set mask; MUST be 0xFF00 */
|
|
|
|
|
|
|
|
#define DIRECT_CHAR(c) ((c&0xFC00)==0xD800)
|
|
|
|
#define DIRECT_FONT(c) ((c&0xFE00)==0xF000)
|
|
|
|
|
|
|
|
#define UCSERR (ATTR_LINEDRW|'a') /* UCS Format error character. */
|
|
|
|
#define UCSWIDE 0x303F
|
|
|
|
|
|
|
|
#define ATTR_WIDE 0x10000000UL
|
|
|
|
#define ATTR_BOLD 0x01000000UL
|
|
|
|
#define ATTR_UNDER 0x02000000UL
|
|
|
|
#define ATTR_REVERSE 0x04000000UL
|
|
|
|
#define ATTR_BLINK 0x08000000UL
|
|
|
|
#define ATTR_FGMASK 0x000F0000UL
|
|
|
|
#define ATTR_BGMASK 0x00F00000UL
|
|
|
|
#define ATTR_COLOURS 0x00FF0000UL
|
|
|
|
#define ATTR_FGSHIFT 16
|
|
|
|
#define ATTR_BGSHIFT 20
|
|
|
|
|
|
|
|
#define ATTR_DEFAULT 0x00980000UL
|
|
|
|
#define ATTR_DEFFG 0x00080000UL
|
|
|
|
#define ATTR_DEFBG 0x00900000UL
|
2001-05-19 19:21:05 +04:00
|
|
|
#define ERASE_CHAR (ATTR_DEFAULT | ATTR_ASCII | ' ')
|
1999-01-08 16:02:13 +03:00
|
|
|
#define ATTR_MASK 0xFFFFFF00UL
|
|
|
|
#define CHAR_MASK 0x000000FFUL
|
2001-05-10 12:34:20 +04:00
|
|
|
|
|
|
|
#define ATTR_CUR_AND (~(ATTR_BOLD|ATTR_REVERSE|ATTR_BLINK|ATTR_COLOURS))
|
|
|
|
#define ATTR_CUR_XOR 0x00BA0000UL
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
typedef HDC Context;
|
|
|
|
#define SEL_NL { 13, 10 }
|
|
|
|
|
|
|
|
GLOBAL int rows, cols, savelines;
|
|
|
|
|
|
|
|
GLOBAL int font_width, font_height;
|
|
|
|
|
|
|
|
#define INBUF_SIZE 2048
|
|
|
|
GLOBAL unsigned char inbuf[INBUF_SIZE];
|
2000-07-26 16:13:51 +04:00
|
|
|
GLOBAL int inbuf_head;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
#define OUTBUF_SIZE 2048
|
|
|
|
#define OUTBUF_MASK (OUTBUF_SIZE-1)
|
|
|
|
GLOBAL unsigned char outbuf[OUTBUF_SIZE];
|
|
|
|
GLOBAL int outbuf_head, outbuf_reap;
|
|
|
|
|
|
|
|
GLOBAL int has_focus;
|
|
|
|
|
2001-04-13 14:52:36 +04:00
|
|
|
GLOBAL int in_vbell;
|
|
|
|
GLOBAL long vbell_timeout;
|
|
|
|
|
2000-07-26 16:13:51 +04:00
|
|
|
GLOBAL int app_cursor_keys, app_keypad_keys, vt52_mode;
|
|
|
|
GLOBAL int repeat_off, cr_lf_return;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-11-30 13:52:07 +03:00
|
|
|
GLOBAL int seen_key_event;
|
|
|
|
GLOBAL int seen_disp_event;
|
|
|
|
|
1999-12-21 13:19:05 +03:00
|
|
|
GLOBAL int session_closed;
|
|
|
|
|
2001-05-10 12:34:20 +04:00
|
|
|
GLOBAL int big_cursor;
|
|
|
|
|
|
|
|
GLOBAL int utf;
|
|
|
|
GLOBAL int dbcs_screenfont;
|
|
|
|
GLOBAL int font_codepage;
|
|
|
|
GLOBAL int kbd_codepage;
|
|
|
|
GLOBAL int line_codepage;
|
2001-05-19 18:12:41 +04:00
|
|
|
GLOBAL WCHAR unitab_scoacs[256];
|
2001-05-10 12:34:20 +04:00
|
|
|
GLOBAL WCHAR unitab_line[256];
|
|
|
|
GLOBAL WCHAR unitab_font[256];
|
|
|
|
GLOBAL WCHAR unitab_xterm[256];
|
|
|
|
GLOBAL WCHAR unitab_oemcp[256];
|
|
|
|
GLOBAL unsigned char unitab_ctrl[256];
|
2001-05-19 19:21:05 +04:00
|
|
|
#define in_utf (utf || line_codepage==CP_UTF8)
|
2001-05-10 12:34:20 +04:00
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
#define LGXF_OVR 1 /* existing logfile overwrite */
|
|
|
|
#define LGXF_APN 0 /* existing logfile append */
|
|
|
|
#define LGXF_ASK -1 /* existing logfile ask */
|
|
|
|
#define LGTYP_NONE 0 /* logmode: no logging */
|
|
|
|
#define LGTYP_ASCII 1 /* logmode: pure ascii */
|
|
|
|
#define LGTYP_DEBUG 2 /* logmode: all chars of taffic */
|
1999-11-30 14:22:30 +03:00
|
|
|
GLOBAL char *logfile;
|
|
|
|
|
2001-01-23 20:37:52 +03:00
|
|
|
/*
|
|
|
|
* Window handles for the dialog boxes that can be running during a
|
|
|
|
* PuTTY session.
|
|
|
|
*/
|
|
|
|
GLOBAL HWND logbox;
|
|
|
|
|
2000-03-17 13:39:05 +03:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
#define WM_XUSER (WM_USER + 0x2000)
|
|
|
|
#define WM_NETEVENT (WM_XUSER + 5)
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
|
2001-05-09 19:12:26 +04:00
|
|
|
TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO, TS_PING,
|
|
|
|
TS_EOL
|
1999-01-08 16:02:13 +03:00
|
|
|
} Telnet_Special;
|
|
|
|
|
|
|
|
typedef enum {
|
2001-05-06 18:20:41 +04:00
|
|
|
MBT_NOTHING,
|
|
|
|
MBT_LEFT, MBT_MIDDLE, MBT_RIGHT, /* `raw' button designations */
|
|
|
|
MBT_SELECT, MBT_EXTEND, MBT_PASTE, /* `cooked' button designations */
|
|
|
|
MBT_WHEEL_UP, MBT_WHEEL_DOWN /* mouse wheel */
|
1999-01-08 16:02:13 +03:00
|
|
|
} Mouse_Button;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
|
|
|
|
} Mouse_Action;
|
|
|
|
|
|
|
|
typedef enum {
|
2001-05-10 12:34:20 +04:00
|
|
|
VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN, VT_UNICODE
|
1999-01-08 16:02:13 +03:00
|
|
|
} VT_Mode;
|
|
|
|
|
2001-01-24 17:08:20 +03:00
|
|
|
enum {
|
|
|
|
/*
|
|
|
|
* Line discipline option states: off, on, up to the backend.
|
|
|
|
*/
|
|
|
|
LD_YES, LD_NO, LD_BACKEND
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
/*
|
|
|
|
* Line discipline options which the backend might try to control.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
LD_EDIT, /* local line editing */
|
|
|
|
LD_ECHO /* local echo */
|
2001-01-24 17:08:20 +03:00
|
|
|
};
|
|
|
|
|
2001-02-05 16:08:18 +03:00
|
|
|
enum {
|
|
|
|
/*
|
|
|
|
* Close On Exit behaviours. (cfg.close_on_exit)
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
COE_NEVER, /* Never close the window */
|
|
|
|
COE_NORMAL, /* Close window on "normal" (non-error) exits only */
|
|
|
|
COE_ALWAYS /* Always close the window */
|
2001-02-05 16:08:18 +03:00
|
|
|
};
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
typedef struct {
|
2000-10-23 14:32:37 +04:00
|
|
|
char *(*init) (char *host, int port, char **realhost);
|
1999-01-08 16:02:13 +03:00
|
|
|
void (*send) (char *buf, int len);
|
|
|
|
void (*size) (void);
|
|
|
|
void (*special) (Telnet_Special code);
|
2001-05-06 18:35:20 +04:00
|
|
|
Socket(*socket) (void);
|
2000-09-08 20:42:11 +04:00
|
|
|
int (*sendok) (void);
|
2001-01-24 17:08:20 +03:00
|
|
|
int (*ldisc) (int);
|
2000-10-04 18:35:15 +04:00
|
|
|
int default_port;
|
1999-01-08 16:02:13 +03:00
|
|
|
} Backend;
|
|
|
|
|
|
|
|
GLOBAL Backend *back;
|
|
|
|
|
2000-06-22 12:41:25 +04:00
|
|
|
extern struct backend_list {
|
2000-03-15 18:08:48 +03:00
|
|
|
int protocol;
|
|
|
|
char *name;
|
|
|
|
Backend *backend;
|
|
|
|
} backends[];
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
typedef struct {
|
|
|
|
/* Basic options */
|
|
|
|
char host[512];
|
|
|
|
int port;
|
2001-01-19 13:10:37 +03:00
|
|
|
enum { PROT_RAW, PROT_TELNET, PROT_RLOGIN, PROT_SSH } protocol;
|
1999-01-08 16:02:13 +03:00
|
|
|
int close_on_exit;
|
1999-11-05 12:50:49 +03:00
|
|
|
int warn_on_close;
|
2001-05-06 18:35:20 +04:00
|
|
|
int ping_interval; /* in seconds */
|
1999-01-15 14:30:40 +03:00
|
|
|
/* SSH options */
|
2000-09-08 19:24:19 +04:00
|
|
|
char remote_cmd[512];
|
2001-05-06 18:35:20 +04:00
|
|
|
char *remote_cmd_ptr; /* might point to a larger command
|
|
|
|
* but never for loading/saving */
|
1999-01-15 14:30:40 +03:00
|
|
|
int nopty;
|
2000-11-02 00:34:21 +03:00
|
|
|
int compression;
|
2000-09-15 15:26:18 +04:00
|
|
|
int agentfwd;
|
2001-03-02 16:55:23 +03:00
|
|
|
enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES, CIPHER_AES } cipher;
|
2000-09-07 20:33:49 +04:00
|
|
|
char keyfile[FILENAME_MAX];
|
2001-05-06 18:35:20 +04:00
|
|
|
int sshprot; /* use v1 or v2 when both available */
|
|
|
|
int buggymac; /* MAC bug commmercial <=v2.3.x SSH2 */
|
1999-11-08 20:42:12 +03:00
|
|
|
int try_tis_auth;
|
2001-02-24 19:08:56 +03:00
|
|
|
int ssh_subsys; /* run a subsystem rather than a command */
|
1999-01-08 16:02:13 +03:00
|
|
|
/* Telnet options */
|
|
|
|
char termtype[32];
|
|
|
|
char termspeed[32];
|
2001-05-06 18:35:20 +04:00
|
|
|
char environmt[1024]; /* VAR\tvalue\0VAR\tvalue\0\0 */
|
1999-01-08 16:02:13 +03:00
|
|
|
char username[32];
|
2001-01-19 13:10:37 +03:00
|
|
|
char localusername[32];
|
1999-01-08 16:02:13 +03:00
|
|
|
int rfc_environ;
|
2001-05-09 17:51:07 +04:00
|
|
|
int passive_telnet;
|
1999-01-08 16:02:13 +03:00
|
|
|
/* Keyboard options */
|
|
|
|
int bksp_is_delete;
|
|
|
|
int rxvt_homeend;
|
2000-07-26 16:13:51 +04:00
|
|
|
int funky_type;
|
2001-05-06 18:35:20 +04:00
|
|
|
int no_applic_c; /* totally disable app cursor keys */
|
|
|
|
int no_applic_k; /* totally disable app keypad */
|
1999-01-08 16:02:13 +03:00
|
|
|
int app_cursor;
|
|
|
|
int app_keypad;
|
1999-11-09 14:10:04 +03:00
|
|
|
int nethack_keypad;
|
2001-05-09 19:12:26 +04:00
|
|
|
int telnet_keyboard;
|
1999-11-09 14:10:04 +03:00
|
|
|
int alt_f4; /* is it special? */
|
|
|
|
int alt_space; /* is it special? */
|
2000-10-21 20:30:58 +04:00
|
|
|
int alt_only; /* is it special? */
|
2001-01-24 17:08:20 +03:00
|
|
|
int localecho;
|
|
|
|
int localedit;
|
2000-10-27 13:46:04 +04:00
|
|
|
int alwaysontop;
|
2000-07-26 16:13:51 +04:00
|
|
|
int scroll_on_key;
|
2000-10-21 20:30:58 +04:00
|
|
|
int scroll_on_disp;
|
|
|
|
int compose_key;
|
2001-04-09 16:52:43 +04:00
|
|
|
int ctrlaltkeys;
|
2001-05-06 18:35:20 +04:00
|
|
|
char wintitle[256]; /* initial window title */
|
1999-01-08 16:02:13 +03:00
|
|
|
/* Terminal options */
|
|
|
|
int savelines;
|
|
|
|
int dec_om;
|
|
|
|
int wrap_mode;
|
1999-01-15 14:30:40 +03:00
|
|
|
int lfhascr;
|
2001-01-17 19:57:33 +03:00
|
|
|
int cursor_type; /* 0=block 1=underline 2=vertical */
|
2000-07-26 16:13:51 +04:00
|
|
|
int blink_cur;
|
2001-04-14 15:37:47 +04:00
|
|
|
enum {
|
|
|
|
BELL_DISABLED, BELL_DEFAULT, BELL_VISUAL, BELL_WAVEFILE
|
|
|
|
} beep;
|
2001-05-13 18:42:17 +04:00
|
|
|
enum {
|
|
|
|
B_IND_DISABLED, B_IND_FLASH, B_IND_STEADY
|
|
|
|
} beep_ind;
|
2001-04-13 14:52:36 +04:00
|
|
|
int bellovl; /* bell overload protection active? */
|
|
|
|
int bellovl_n; /* number of bells to cause overload */
|
|
|
|
int bellovl_t; /* time interval for overload (seconds) */
|
|
|
|
int bellovl_s; /* period of silence to re-enable bell (s) */
|
2001-04-14 15:37:47 +04:00
|
|
|
char bell_wavefile[FILENAME_MAX];
|
2000-07-26 16:13:51 +04:00
|
|
|
int scrollbar;
|
|
|
|
int locksize;
|
|
|
|
int bce;
|
|
|
|
int blinktext;
|
1999-01-08 16:02:13 +03:00
|
|
|
int win_name_always;
|
|
|
|
int width, height;
|
|
|
|
char font[64];
|
|
|
|
int fontisbold;
|
|
|
|
int fontheight;
|
1999-11-08 14:08:09 +03:00
|
|
|
int fontcharset;
|
2001-01-07 21:24:59 +03:00
|
|
|
char logfilename[FILENAME_MAX];
|
|
|
|
int logtype;
|
2001-04-16 19:58:43 +04:00
|
|
|
int logxfovr;
|
2001-01-22 19:38:43 +03:00
|
|
|
int hide_mouseptr;
|
2001-04-28 22:02:19 +04:00
|
|
|
int sunken_edge;
|
2001-04-09 16:43:46 +04:00
|
|
|
char answerback[256];
|
1999-01-08 16:02:13 +03:00
|
|
|
/* Colour options */
|
|
|
|
int try_palette;
|
|
|
|
int bold_colour;
|
|
|
|
unsigned char colours[22][3];
|
|
|
|
/* Selection options */
|
|
|
|
int mouse_is_xterm;
|
2001-04-09 15:59:35 +04:00
|
|
|
int rawcnp;
|
1999-01-08 16:02:13 +03:00
|
|
|
short wordness[256];
|
2000-07-26 16:13:51 +04:00
|
|
|
/* translations */
|
|
|
|
VT_Mode vtmode;
|
2001-05-10 12:34:20 +04:00
|
|
|
char line_codepage[32];
|
2001-01-22 14:34:52 +03:00
|
|
|
/* X11 forwarding */
|
|
|
|
int x11_forward;
|
|
|
|
char x11_display[128];
|
2001-08-09 00:44:35 +04:00
|
|
|
/* port forwarding */
|
|
|
|
int lport_acceptall; /* accepts connection from hosts other than localhost */
|
|
|
|
char portfwd[1024]; /* [LR]localport\thost:port\000[LR]localport\thost:port\000\000 */
|
1999-01-08 16:02:13 +03:00
|
|
|
} Config;
|
|
|
|
|
1999-10-27 18:28:11 +04:00
|
|
|
/*
|
|
|
|
* You can compile with -DSSH_DEFAULT to have ssh by default.
|
|
|
|
*/
|
|
|
|
#ifndef SSH_DEFAULT
|
|
|
|
#define DEFAULT_PROTOCOL PROT_TELNET
|
|
|
|
#define DEFAULT_PORT 23
|
|
|
|
#else
|
|
|
|
#define DEFAULT_PROTOCOL PROT_SSH
|
|
|
|
#define DEFAULT_PORT 22
|
|
|
|
#endif
|
|
|
|
|
2000-09-08 18:45:20 +04:00
|
|
|
/*
|
|
|
|
* Some global flags denoting the type of application.
|
2000-09-21 18:34:32 +04:00
|
|
|
*
|
|
|
|
* FLAG_VERBOSE is set when the user requests verbose details.
|
|
|
|
*
|
|
|
|
* FLAG_STDERR is set in command-line applications (which have a
|
|
|
|
* functioning stderr that it makes sense to write to) and not in
|
|
|
|
* GUI applications (which don't).
|
|
|
|
*
|
|
|
|
* FLAG_INTERACTIVE is set when a full interactive shell session is
|
|
|
|
* being run, _either_ because no remote command has been provided
|
|
|
|
* _or_ because the application is GUI and can't run non-
|
|
|
|
* interactively.
|
2000-09-08 18:45:20 +04:00
|
|
|
*/
|
2000-09-21 18:34:32 +04:00
|
|
|
#define FLAG_VERBOSE 0x0001
|
|
|
|
#define FLAG_STDERR 0x0002
|
|
|
|
#define FLAG_INTERACTIVE 0x0004
|
2000-09-08 18:45:20 +04:00
|
|
|
GLOBAL int flags;
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
GLOBAL Config cfg;
|
1999-10-27 18:28:11 +04:00
|
|
|
GLOBAL int default_protocol;
|
|
|
|
GLOBAL int default_port;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-11-15 13:31:06 +03:00
|
|
|
struct RSAKey; /* be a little careful of scope */
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* Exports from window.c.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
void request_resize(int, int, int);
|
|
|
|
void do_text(Context, int, int, char *, int, unsigned long, int);
|
2001-05-10 12:34:20 +04:00
|
|
|
void do_cursor(Context, int, int, char *, int, unsigned long, int);
|
2001-05-06 18:35:20 +04:00
|
|
|
void set_title(char *);
|
|
|
|
void set_icon(char *);
|
|
|
|
void set_sbar(int, int, int);
|
1999-07-20 17:01:56 +04:00
|
|
|
Context get_ctx(void);
|
2001-05-06 18:35:20 +04:00
|
|
|
void free_ctx(Context);
|
|
|
|
void palette_set(int, int, int, int);
|
|
|
|
void palette_reset(void);
|
2001-05-10 12:34:20 +04:00
|
|
|
void write_aclip(char *, int, int);
|
|
|
|
void write_clip(wchar_t *, int, int);
|
|
|
|
void get_clip(wchar_t **, int *);
|
2001-05-06 18:35:20 +04:00
|
|
|
void optimised_move(int, int, int);
|
2001-05-06 18:20:41 +04:00
|
|
|
void set_raw_mouse_mode(int);
|
|
|
|
Mouse_Button translate_button(Mouse_Button b);
|
2000-09-22 15:04:57 +04:00
|
|
|
void connection_fatal(char *, ...);
|
2001-05-06 18:35:20 +04:00
|
|
|
void fatalbox(char *, ...);
|
|
|
|
void beep(int);
|
2000-09-22 17:10:19 +04:00
|
|
|
void begin_session(void);
|
2000-09-25 20:17:53 +04:00
|
|
|
void sys_cursor(int x, int y);
|
1999-01-08 16:02:13 +03:00
|
|
|
#define OPTIMISE_IS_SCROLL 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Exports from noise.c.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
void noise_get_heavy(void (*func) (void *, int));
|
|
|
|
void noise_get_light(void (*func) (void *, int));
|
2000-10-23 19:20:05 +04:00
|
|
|
void noise_regular(void);
|
1999-01-08 16:02:13 +03:00
|
|
|
void noise_ultralight(DWORD data);
|
|
|
|
void random_save_seed(void);
|
2000-09-25 19:47:57 +04:00
|
|
|
void random_destroy_seed(void);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Exports from windlg.c.
|
|
|
|
*/
|
2000-10-18 19:36:32 +04:00
|
|
|
void defuse_showwindow(void);
|
2001-05-06 18:35:20 +04:00
|
|
|
int do_config(void);
|
|
|
|
int do_reconfig(HWND);
|
|
|
|
void do_defaults(char *, Config *);
|
|
|
|
void logevent(char *);
|
|
|
|
void showeventlog(HWND);
|
|
|
|
void showabout(HWND);
|
2000-09-28 12:37:10 +04:00
|
|
|
void verify_ssh_host_key(char *host, int port, char *keytype,
|
2001-05-06 18:35:20 +04:00
|
|
|
char *keystr, char *fingerprint);
|
2001-01-07 21:24:59 +03:00
|
|
|
int askappend(char *filename);
|
2000-09-25 19:47:57 +04:00
|
|
|
void registry_cleanup(void);
|
2001-01-07 19:27:48 +03:00
|
|
|
void force_normal(HWND hwnd);
|
1999-10-28 20:07:25 +04:00
|
|
|
|
1999-10-28 20:25:15 +04:00
|
|
|
GLOBAL int nsessions;
|
|
|
|
GLOBAL char **sessions;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-10-06 17:21:36 +04:00
|
|
|
/*
|
|
|
|
* Exports from settings.c.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
void save_settings(char *section, int do_host, Config * cfg);
|
|
|
|
void load_settings(char *section, int do_host, Config * cfg);
|
2000-10-06 17:21:36 +04:00
|
|
|
void get_sesslist(int allocate);
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* Exports from terminal.c.
|
|
|
|
*/
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
void term_init(void);
|
|
|
|
void term_size(int, int, int);
|
|
|
|
void term_out(void);
|
|
|
|
void term_paint(Context, int, int, int, int);
|
|
|
|
void term_scroll(int, int);
|
|
|
|
void term_pwron(void);
|
|
|
|
void term_clrsb(void);
|
|
|
|
void term_mouse(Mouse_Button, Mouse_Action, int, int, int, int);
|
|
|
|
void term_deselect(void);
|
|
|
|
void term_update(void);
|
1999-01-08 16:02:13 +03:00
|
|
|
void term_invalidate(void);
|
2000-03-17 13:39:05 +03:00
|
|
|
void term_blink(int set_cursor);
|
2001-05-17 14:06:54 +04:00
|
|
|
void term_do_paste(void);
|
2000-07-26 16:13:51 +04:00
|
|
|
void term_paste(void);
|
|
|
|
void term_nopaste(void);
|
2001-01-26 12:33:12 +03:00
|
|
|
int term_ldisc(int option);
|
2000-10-20 17:51:46 +04:00
|
|
|
void from_backend(int is_stderr, char *data, int len);
|
2001-05-06 18:35:20 +04:00
|
|
|
void logfopen(void);
|
|
|
|
void logfclose(void);
|
2000-11-21 22:28:25 +03:00
|
|
|
void term_copyall(void);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-11-01 19:40:40 +03:00
|
|
|
/*
|
|
|
|
* Exports from raw.c.
|
|
|
|
*/
|
|
|
|
|
1999-11-10 12:14:08 +03:00
|
|
|
extern Backend raw_backend;
|
1999-11-01 19:40:40 +03:00
|
|
|
|
2001-01-19 13:10:37 +03:00
|
|
|
/*
|
|
|
|
* Exports from rlogin.c.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern Backend rlogin_backend;
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* Exports from telnet.c.
|
|
|
|
*/
|
|
|
|
|
1999-07-12 14:28:18 +04:00
|
|
|
extern Backend telnet_backend;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Exports from ssh.c.
|
|
|
|
*/
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
extern int (*ssh_get_line) (const char *prompt, char *str, int maxlen,
|
|
|
|
int is_pw);
|
1999-07-12 14:28:18 +04:00
|
|
|
extern Backend ssh_backend;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-11-09 15:05:34 +03:00
|
|
|
/*
|
|
|
|
* Exports from ldisc.c.
|
|
|
|
*/
|
|
|
|
|
2001-01-24 17:08:20 +03:00
|
|
|
extern void ldisc_send(char *buf, int len);
|
1999-11-09 15:05:34 +03:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* Exports from sshrand.c.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void random_add_noise(void *noise, int length);
|
|
|
|
void random_init(void);
|
|
|
|
int random_byte(void);
|
|
|
|
void random_get_savedata(void **data, int *len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Exports from misc.c.
|
|
|
|
*/
|
|
|
|
|
2001-04-28 13:24:19 +04:00
|
|
|
#include "misc.h"
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-02-09 18:18:34 +03:00
|
|
|
/*
|
|
|
|
* Exports from version.c.
|
|
|
|
*/
|
|
|
|
extern char ver[];
|
|
|
|
|
1999-11-08 14:13:53 +03:00
|
|
|
/*
|
|
|
|
* Exports from sizetip.c.
|
|
|
|
*/
|
|
|
|
void UpdateSizeTip(HWND src, int cx, int cy);
|
|
|
|
void EnableSizeTip(int bEnable);
|
|
|
|
|
1999-11-08 14:08:09 +03:00
|
|
|
/*
|
2001-05-10 12:34:20 +04:00
|
|
|
* Exports from unicode.c.
|
1999-11-08 14:08:09 +03:00
|
|
|
*/
|
2001-05-10 12:34:20 +04:00
|
|
|
#ifndef CP_UTF8
|
|
|
|
#define CP_UTF8 65001
|
|
|
|
#endif
|
|
|
|
void init_ucs_tables(void);
|
|
|
|
void lpage_send(int codepage, char *buf, int len);
|
|
|
|
void luni_send(wchar_t * widebuf, int len);
|
|
|
|
int check_compose(int first, int second);
|
|
|
|
int decode_codepage(char *cp_name);
|
|
|
|
char *cp_name(int codepage);
|
1999-11-08 14:08:09 +03:00
|
|
|
|
2000-03-24 12:45:49 +03:00
|
|
|
/*
|
|
|
|
* Exports from mscrypto.c
|
|
|
|
*/
|
|
|
|
#ifdef MSCRYPTOAPI
|
|
|
|
int crypto_startup();
|
|
|
|
void crypto_wrapup();
|
|
|
|
#endif
|
|
|
|
|
2000-09-14 19:02:50 +04:00
|
|
|
/*
|
|
|
|
* Exports from pageantc.c
|
|
|
|
*/
|
|
|
|
void agent_query(void *in, int inlen, void **out, int *outlen);
|
|
|
|
int agent_exists(void);
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
#endif
|