Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'BE_NOS_S.C')
-rw-r--r--BE_NOS_S.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/BE_NOS_S.C b/BE_NOS_S.C
deleted file mode 100644
index 097433aa..00000000
--- a/BE_NOS_S.C
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Linking module for PuTTYtel: list the available backends not
- * including ssh.
- */
-
-#include <stdio.h>
-#include "putty.h"
-
-const int be_default_protocol = PROT_TELNET;
-
-const char *const appname = "PuTTYtel";
-
-const struct BackendVtable *const backends[] = {
- &telnet_backend,
- &serial_backend,
- &rlogin_backend,
- &supdup_backend,
- &raw_backend,
- NULL
-};
-
-const size_t n_ui_backends = 2;