X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/e6717a9898d1a139988d70e6fa5d19dbf8b8bba2..1626d1698ddb84c7c0808f180db4dc4ae7ee735c:/putty.h diff --git a/putty.h b/putty.h index 978cbf52..8277bbc2 100644 --- a/putty.h +++ b/putty.h @@ -357,7 +357,7 @@ struct backend_tag { void (*size) (void *handle, int width, int height); void (*special) (void *handle, Telnet_Special code); const struct telnet_special *(*get_specials) (void *handle); - Socket(*socket) (void *handle); + int (*connected) (void *handle); int (*exitcode) (void *handle); /* If back->sendok() returns FALSE, data sent to it from the frontend * may be lost. */ @@ -787,7 +787,7 @@ void term_free(Terminal *); void term_size(Terminal *, int, int, int); void term_paint(Terminal *, Context, int, int, int, int, int); void term_scroll(Terminal *, int, int); -void term_pwron(Terminal *); +void term_pwron(Terminal *, int); void term_clrsb(Terminal *); void term_mouse(Terminal *, Mouse_Button, Mouse_Button, Mouse_Action, int,int,int,int,int);