1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00
putty-source/be_none.c

16 lines
270 B
C
Raw Permalink Normal View History

/*
* Linking module for programs that do not support selection of backend
* (such as pterm).
*/
#include <stdio.h>
#include "putty.h"
const int be_default_protocol = -1;
const struct BackendVtable *const backends[] = {
NULL
};
const size_t n_ui_backends = 0;