More preparatory work: remove the <windows.h> include from lots of
[u/mdw/putty] / be_all.c
... / ...
CommitLineData
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
9struct 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};