mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-13 18:43:52 -05:00

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
|
|
};
|