X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=putty.h;h=baa55ff6df97ea771f861aded4b9d33a42648406;hb=958be97ce76eb774408b2e32cbb1c2afb80026d7;hp=266d6ac413fc6168f40e9dc4bc464e92ce0e5dec;hpb=ef885c78ca16c6a6d63d6bf269d0b992792ca332;p=PuTTY.git diff --git a/putty.h b/putty.h index 266d6ac4..baa55ff6 100644 --- a/putty.h +++ b/putty.h @@ -281,6 +281,7 @@ typedef struct { int app_keypad; int nethack_keypad; int telnet_keyboard; + int telnet_newline; int alt_f4; /* is it special? */ int alt_space; /* is it special? */ int alt_only; /* is it special? */ @@ -590,4 +591,12 @@ const char *wc_error(int value); int wc_match(const char *wildcard, const char *target); int wc_unescape(char *output, const char *wildcard); +/* + * Exports from console.c (that aren't equivalents to things in + * windlg.c). + */ +extern int console_batch_mode; +extern char *console_password; +int console_get_line(const char *prompt, char *str, int maxlen, int is_pw); + #endif