mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 18:07:59 +00:00
15 lines
315 B
C
15 lines
315 B
C
|
/*
|
||
|
* winmisc.c: miscellaneous Windows-specific things.
|
||
|
*/
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "putty.h"
|
||
|
|
||
|
void platform_get_x11_auth(char *display, int *proto,
|
||
|
unsigned char *data, int *datalen)
|
||
|
{
|
||
|
/* We don't support this at all under Windows. */
|
||
|
}
|