]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - putty.h
Attribute masking implemented. The variable attr_mask stored the current
[PuTTY.git] / putty.h
1 #ifndef PUTTY_PUTTY_H
2 #define PUTTY_PUTTY_H
3
4 #define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
5
6 #ifdef macintosh
7 #define OPTIMISE_SCROLL
8 #endif
9
10 #ifdef macintosh
11 #include <MacTypes.h>
12 #include <Palettes.h>
13 typedef UInt32 DWORD;
14 struct mac_session;
15 #endif /* macintosh */
16
17 #ifndef TRUE
18 #define TRUE 1
19 #endif
20 #ifndef FALSE
21 #define FALSE 0
22 #endif
23
24 #define ATTR_ACTCURS 0x80000000UL      /* active cursor (block) */
25 #define ATTR_PASCURS 0x40000000UL      /* passive cursor (box) */
26 #define ATTR_INVALID 0x20000000UL
27 #define ATTR_WRAPPED 0x10000000UL
28
29 #define ATTR_ASCII   0x00000000UL      /* normal ASCII charset ESC ( B */
30 #define ATTR_GBCHR   0x00100000UL      /* UK variant   charset ESC ( A */
31 #define ATTR_LINEDRW 0x00200000UL      /* line drawing charset ESC ( 0 */
32
33 #define ATTR_BOLD    0x00000100UL
34 #define ATTR_UNDER   0x00000200UL
35 #define ATTR_REVERSE 0x00000400UL
36 #define ATTR_FGMASK  0x0000F000UL
37 #define ATTR_BGMASK  0x000F0000UL
38 #define ATTR_FGSHIFT 12
39 #define ATTR_BGSHIFT 16
40
41 #define ATTR_DEFAULT 0x00098000UL
42 #define ATTR_DEFFG   0x00008000UL
43 #define ATTR_DEFBG   0x00090000UL
44 #define ATTR_CUR_XOR 0x000BA000UL
45 #define ERASE_CHAR   (ATTR_DEFAULT | ' ')
46 #define ATTR_MASK    0xFFFFFF00UL
47 #define CHAR_MASK    0x000000FFUL
48
49 #ifdef macintosh
50 struct mac_session;
51 typedef struct mac_session *Context;
52 #else /* not macintosh */
53 typedef HDC Context;
54 #endif /* not macintosh */
55
56 #ifdef macintosh
57 #define SEL_NL { 13 }
58 #else
59 #define SEL_NL { 13, 10 }
60 #endif
61
62 /*
63  * Global variables. Most modules declare these `extern', but
64  * window.c will do `#define PUTTY_DO_GLOBALS' before including this
65  * module, and so will get them properly defined.
66  */
67 #ifdef PUTTY_DO_GLOBALS
68 #define GLOBAL
69 #else
70 #define GLOBAL extern
71 #endif
72
73 GLOBAL unsigned long attr_mask;
74
75 GLOBAL int rows, cols, savelines;
76
77 GLOBAL int font_width, font_height;
78
79 #define INBUF_SIZE 2048
80 #define INBUF_MASK (INBUF_SIZE-1)
81 GLOBAL unsigned char inbuf[INBUF_SIZE];
82 GLOBAL int inbuf_head, inbuf_reap;
83
84 #define OUTBUF_SIZE 2048
85 #define OUTBUF_MASK (OUTBUF_SIZE-1)
86 GLOBAL unsigned char outbuf[OUTBUF_SIZE];
87 GLOBAL int outbuf_head, outbuf_reap;
88
89 GLOBAL int has_focus;
90
91 GLOBAL int app_cursor_keys, app_keypad_keys;
92
93 #define WM_NETEVENT  (WM_USER + 1)
94
95 typedef enum {
96     TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
97     TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF
98 } Telnet_Special;
99
100 typedef enum {
101     MB_NOTHING, MB_SELECT, MB_EXTEND, MB_PASTE
102 } Mouse_Button;
103
104 typedef enum {
105     MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
106 } Mouse_Action;
107
108 typedef enum {
109     VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN
110 } VT_Mode;
111
112 typedef struct {
113 #ifdef macintosh
114         char *(*init) (char *host, int port, char **realhost);
115         int (*msg)(void);
116 #else /* not macintosh */
117     char *(*init) (HWND hwnd, char *host, int port, char **realhost);
118     int (*msg) (WPARAM wParam, LPARAM lParam);
119 #endif /* not macintosh */
120     void (*send) (char *buf, int len);
121     void (*size) (void);
122     void (*special) (Telnet_Special code);
123 } Backend;
124
125 GLOBAL Backend *back;
126
127 typedef struct {
128     /* Basic options */
129     char host[512];
130     int port;
131     enum { PROT_TELNET, PROT_SSH } protocol;
132     int close_on_exit;
133     /* SSH options */
134     int nopty;
135     /* Telnet options */
136     char termtype[32];
137     char termspeed[32];
138     char environmt[1024];                    /* VAR\tvalue\0VAR\tvalue\0\0 */
139     char username[32];
140     int rfc_environ;
141     /* Keyboard options */
142     int bksp_is_delete;
143     int rxvt_homeend;
144     int linux_funkeys;
145     int app_cursor;
146     int app_keypad;
147     /* Terminal options */
148     int savelines;
149     int dec_om;
150     int wrap_mode;
151     int lfhascr;
152     int win_name_always;
153     int width, height;
154     char font[64];
155     int fontisbold;
156     int fontheight;
157     VT_Mode vtmode;
158     /* Colour options */
159     int try_palette;
160     int bold_colour;
161 #ifdef macintosh
162     PaletteHandle colours;
163 #else /* not macintosh */
164     unsigned char colours[22][3];
165 #endif /* not macintosh */
166     /* Selection options */
167 #ifndef macintosh
168     int mouse_is_xterm;
169 #endif
170     short wordness[256];
171 } Config;
172
173 GLOBAL Config cfg;
174
175 typedef struct {
176     /* Display state */
177     int rows, cols, savelines;
178     int font_width, font_height;
179     int has_focus;
180     /* Buffers */
181     unsigned char inbuf[INBUF_SIZE];
182     int inbuf_head, inbuf_reap;
183     unsigned char outbuf[OUTBUF_SIZE];
184     int outbuf_head, outbuf_reap;
185     /* Emulator state */
186     int app_cursor_keys, app_keypad_keys;
187     /* Backend */
188     Backend *back;
189     /* Config that created this session */
190     Config cfg;
191 } Session;
192
193
194 /*
195  * Exports from window.c.
196  */
197 void request_resize (int, int);
198 void do_text (Context, int, int, char *, int, unsigned long);
199 void set_title (char *);
200 void set_icon (char *);
201 void set_sbar (int, int, int);
202 Context get_ctx();
203 void free_ctx (Context);
204 void palette_set (int, int, int, int);
205 void palette_reset (void);
206 void write_clip (void *, int);
207 void get_clip (void **, int *);
208 void optimised_move (int, int, int);
209 void do_scroll(int, int, int);
210 void fatalbox (const char *, ...);
211 void beep (void);
212 #define OPTIMISE_IS_SCROLL 1
213
214 /*
215  * Exports from noise.c.
216  */
217 void noise_get_heavy(void (*func) (void *, int));
218 void noise_get_light(void (*func) (void *, int));
219 void noise_ultralight(DWORD data);
220 void random_save_seed(void);
221
222 #ifndef macintosh
223 /*
224  * Exports from windlg.c.
225  */
226 int do_config (void);
227 int do_reconfig (HWND);
228 void do_defaults (char *);
229 void lognegot (char *);
230 void shownegot (HWND);
231 void showabout (HWND);
232 void verify_ssh_host_key(char *host, struct RSAKey *key);
233 #endif
234
235 /*
236  * Exports from terminal.c.
237  */
238
239 void term_init (void);
240 void term_size (int, int, int);
241 void term_out (void);
242 void term_paint (Context, int, int, int, int);
243 void term_scroll (int, int);
244 void term_pwron (void);
245 void term_clrsb (void);
246 void term_mouse (Mouse_Button, Mouse_Action, int, int);
247 void term_deselect (void);
248 void term_update (void);
249 void term_invalidate(void);
250
251 /*
252  * Exports from telnet.c.
253  */
254
255 Backend telnet_backend;
256
257 /*
258  * Exports from ssh.c.
259  */
260
261 Backend ssh_backend;
262
263 /*
264  * Exports from sshrand.c.
265  */
266
267 void random_add_noise(void *noise, int length);
268 void random_init(void);
269 int random_byte(void);
270 void random_get_savedata(void **data, int *len);
271
272 /*
273  * Exports from misc.c.
274  */
275
276 /* #define MALLOC_LOG  do this if you suspect putty of leaking memory */
277 #ifdef MALLOC_LOG
278 #define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z))
279 #define srealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z))
280 #define sfree(z) (mlog(__FILE__,__LINE__), safefree(z))
281 void mlog(char *, int);
282 #else
283 #define smalloc safemalloc
284 #define srealloc saferealloc
285 #define sfree safefree
286 #endif
287
288 void *safemalloc(size_t);
289 void *saferealloc(void *, size_t);
290 void safefree(void *);
291
292 /*
293  * Exports from testback.c
294  */
295
296 extern Backend null_backend;
297 extern Backend loop_backend;
298
299 /*
300  * Exports from version.c.
301  */
302 extern char ver[];
303
304 /*
305  * A debug system.
306  */
307 #ifdef DEBUG
308 #include <stdarg.h>
309 #define debug(x) (dprintf x)
310 static void dprintf(char *fmt, ...) {
311     char buf[2048];
312     DWORD dw;
313     va_list ap;
314     static int gotconsole = 0;
315
316     if (!gotconsole) {
317         AllocConsole();
318         gotconsole = 1;
319     }
320
321     va_start(ap, fmt);
322     vsprintf(buf, fmt, ap);
323     WriteFile (GetStdHandle(STD_OUTPUT_HANDLE), buf, strlen(buf), &dw, NULL);
324     va_end(ap);
325 }
326 #else
327 #define debug(x)
328 #endif
329
330 #endif