mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-18 03:28:07 -05:00
Add a stub "free" routine for pterm. Thanks to rjk.
[originally from svn r2666]
This commit is contained in:
parent
1512f68602
commit
81ada5f24f
@ -518,6 +518,14 @@ static void pty_reconfig(void *handle, Config *cfg)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Stub routine (never called in pterm
|
||||||
|
*/
|
||||||
|
static void pty_free(void *handle)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Called to send data down the pty.
|
* Called to send data down the pty.
|
||||||
*/
|
*/
|
||||||
@ -624,6 +632,7 @@ static int pty_exitcode(void *handle)
|
|||||||
|
|
||||||
Backend pty_backend = {
|
Backend pty_backend = {
|
||||||
pty_init,
|
pty_init,
|
||||||
|
pty_free,
|
||||||
pty_reconfig,
|
pty_reconfig,
|
||||||
pty_send,
|
pty_send,
|
||||||
pty_sendbuffer,
|
pty_sendbuffer,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user