Add an invisible System Caret for blind-helper-software to track
[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},
12 {PROT_RAW, "raw", &raw_backend},
13 {0, NULL}
14};
15
16/*
17 * Stub implementations of functions not used in non-ssh versions.
18 */
19void random_save_seed(void) {
20}
21
22void noise_ultralight(DWORD data) {
23}