mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
14 lines
229 B
C
14 lines
229 B
C
|
#include <stdio.h>
|
||
|
#include "putty.h"
|
||
|
|
||
|
const char *const appname = "pterm";
|
||
|
|
||
|
const int be_default_protocol = -1;
|
||
|
|
||
|
const struct BackendVtable *const backends[] = {
|
||
|
&conpty_backend,
|
||
|
NULL
|
||
|
};
|
||
|
|
||
|
const size_t n_ui_backends = 1;
|