mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-08 08:58:00 +00:00
1f399bec58
Similarly to the previous commit, this is one fewer place where I need to make a handwritten change with each new protocol.
14 lines
237 B
C
14 lines
237 B
C
/*
|
|
* 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
|
|
};
|