X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/799dfcfab944cd604ee0850f37e0dcb07f02d84d..05bea829b8868f5db4ac048897e944ed05dfc457:/winmisc.c diff --git a/winmisc.c b/winmisc.c index a524b96f..518eb157 100644 --- a/winmisc.c +++ b/winmisc.c @@ -1,12 +1,10 @@ /* - * winmisc.c: miscellaneous Windows-specific things. + * winmisc.c: miscellaneous Windows-specific things */ -#include #include #include #include "putty.h" -#include "winstuff.h" OSVERSIONINFO osVersion; @@ -16,6 +14,13 @@ void platform_get_x11_auth(char *display, int *proto, /* We don't support this at all under Windows. */ } +const char platform_x11_best_transport[] = "localhost"; + +char *platform_get_x_display(void) { + /* We may as well check for DISPLAY in case it's useful. */ + return dupstr(getenv("DISPLAY")); +} + Filename filename_from_str(const char *str) { Filename ret;