]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - be_none.c
first pass
[PuTTY.git] / be_none.c
index f729e25d10b906681aa16132d5127a8591c544a8..688b8dafe32d62aba7f5d8b6ee58c2f15a499061 100644 (file)
--- a/be_none.c
+++ b/be_none.c
@@ -1,15 +1,11 @@
 /*
- * Linking module for PSCP: list the available backends, but
- * without accompanying function suites. Used only for name
- * lookups.
+ * Linking module for programs that do not support selection of backend
+ * (such as pterm).
  */
 
-#include <windows.h>
 #include <stdio.h>
 #include "putty.h"
 
-struct backend_list backends[] = {
-    {PROT_SSH, "ssh", NULL},
-    {PROT_TELNET, "telnet", NULL},
-    {PROT_RAW, "raw", NULL},
+Backend *backends[] = {
+    NULL
 };