To avoid gratuitous flicker, if a control already has the focus when it's
[u/mdw/putty] / be_nossh.c
CommitLineData
89ee5268 1/*
2 * Linking module for PuTTYtel: list the available backends not
3 * including ssh.
4 */
5
6#include <windows.h>
7#include <stdio.h>
8#include "putty.h"
9
ffa79828 10const int be_default_protocol = PROT_TELNET;
11
89ee5268 12struct backend_list backends[] = {
13 {PROT_TELNET, "telnet", &telnet_backend},
c91409da 14 {PROT_RLOGIN, "rlogin", &rlogin_backend},
89ee5268 15 {PROT_RAW, "raw", &raw_backend},
16 {0, NULL}
17};
18
19/*
20 * Stub implementations of functions not used in non-ssh versions.
21 */
32874aea 22void random_save_seed(void)
23{
89ee5268 24}
25
32874aea 26void random_destroy_seed(void)
27{
28b5d7fd 28}
29
32874aea 30void noise_ultralight(DWORD data)
31{
89ee5268 32}
28b5d7fd 33
32874aea 34void noise_regular(void)
35{
7d6ee6ff 36}