X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/1e00c92b81273392a7db4796dc163b0729891e44..9f123c4f2fa5d06500b39a5f8b0c38a39a6a5688:/unix/unix.h diff --git a/unix/unix.h b/unix/unix.h index 74f41746..2ffc3567 100644 --- a/unix/unix.h +++ b/unix/unix.h @@ -13,13 +13,14 @@ #include "charset.h" struct Filename { - char path[FILENAME_MAX]; + char *path; }; -FILE *f_open(struct Filename, char const *, int); +FILE *f_open(const struct Filename *, char const *, int); struct FontSpec { - char name[256]; + char *name; /* may be "" to indicate no selected font at all */ }; +struct FontSpec *fontspec_new(const char *name); typedef void *Context; /* FIXME: probably needs changing */ @@ -89,7 +90,7 @@ long get_windowid(void *frontend); void *get_window(void *frontend); /* void * to avoid depending on gtk.h */ /* Things pterm.c needs from gtkdlg.c */ -int do_config_box(const char *title, Config *cfg, +int do_config_box(const char *title, Conf *conf, int midsession, int protcfginfo); void fatal_message_box(void *window, char *msg); void about_box(void *window); @@ -100,7 +101,7 @@ int reallyclose(void *frontend); /* Things pterm.c needs from {ptermm,uxputty}.c */ char *make_default_wintitle(char *hostname); -int process_nonoption_arg(char *arg, Config *cfg, int *allow_launch); +int process_nonoption_arg(char *arg, Conf *conf, int *allow_launch); /* pterm.c needs this special function in xkeysym.c */ int keysym_to_unicode(int keysym); @@ -170,6 +171,13 @@ int init_ucs(struct unicode_data *ucsdata, char *line_codepage, void *sk_getxdmdata(void *sock, int *lenp); /* + * Function provided by front ends, and called by uxnet.c to indicate + * that net_pending_errors() would like to be called back when the + * front end has a spare moment and isn't deep in any other recursion. + */ +void frontend_net_error_pending(void); + +/* * General helpful Unix stuff: more helpful version of the FD_SET * macro, which also handles maxfd. */