1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00
putty-source/be_none.c
Simon Tatham eb79da11de Oops - add a terminator to the array
[originally from svn r506]
2000-06-23 10:58:17 +00:00

17 lines
346 B
C

/*
* Linking module for PSCP: list the available backends, but
* without accompanying function suites. Used only for name
* lookups.
*/
#include <windows.h>
#include <stdio.h>
#include "putty.h"
struct backend_list backends[] = {
{PROT_SSH, "ssh", NULL},
{PROT_TELNET, "telnet", NULL},
{PROT_RAW, "raw", NULL},
{0, NULL}
};