Wez Furlong's patch to add xterm mouse reporting and proper mouse
[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
10struct backend_list backends[] = {
11 {PROT_TELNET, "telnet", &telnet_backend},
c91409da 12 {PROT_RLOGIN, "rlogin", &rlogin_backend},
89ee5268 13 {PROT_RAW, "raw", &raw_backend},
14 {0, NULL}
15};
16
17/*
18 * Stub implementations of functions not used in non-ssh versions.
19 */
20void random_save_seed(void) {
21}
22
28b5d7fd 23void random_destroy_seed(void) {
24}
25
89ee5268 26void noise_ultralight(DWORD data) {
27}
28b5d7fd 28
7d6ee6ff 29void noise_regular(void) {
30}