]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - be_all.c
More preparatory work: remove the <windows.h> include from lots of
[PuTTY.git] / be_all.c
1 /*
2  * Linking module for PuTTY proper: list the available backends
3  * including ssh.
4  */
5
6 #include <stdio.h>
7 #include "putty.h"
8
9 struct backend_list backends[] = {
10     {PROT_SSH, "ssh", &ssh_backend},
11     {PROT_TELNET, "telnet", &telnet_backend},
12     {PROT_RLOGIN, "rlogin", &rlogin_backend},
13     {PROT_RAW, "raw", &raw_backend},
14     {0, NULL}
15 };