First stab at the ability to compile puttytel.exe, an SSH-free
[u/mdw/putty] / be_all.c
CommitLineData
89ee5268 1/*
2 * Linking module for PuTTY proper: list the available backends
3 * including ssh.
4 */
5
6#include <windows.h>
7#include <stdio.h>
8#include "putty.h"
9
10struct backend_list backends[] = {
11 {PROT_SSH, "ssh", &ssh_backend},
12 {PROT_TELNET, "telnet", &telnet_backend},
13 {PROT_RAW, "raw", &raw_backend},
14 {0, NULL}
15};