mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-21 22:28:37 -05:00
19 lines
353 B
C
19 lines
353 B
C
![]() |
/*
|
||
|
* Centralised functions for the Interactor trait.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
InteractionReadySeat interactor_announce(Interactor *itr)
|
||
|
{
|
||
|
Seat *seat = interactor_get_seat(itr);
|
||
|
|
||
|
/* TODO: print an announcement of this Interactor's identity, when
|
||
|
* appropriate */
|
||
|
|
||
|
InteractionReadySeat iseat;
|
||
|
iseat.seat = seat;
|
||
|
|
||
|
return iseat;
|
||
|
}
|