1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Merge recent misc fixes from 'pre-0.77'.

This commit is contained in:
Jacob Nevins
2022-05-19 23:25:20 +01:00
2 changed files with 8 additions and 3 deletions

View File

@ -2074,7 +2074,7 @@ static bool is_alt_pressed(void)
static bool resizing;
static void win_seat_notify_remote_exit(Seat *seat)
static void exit_callback(void *vctx)
{
int exitcode, close_on_exit;
@ -2101,6 +2101,11 @@ static void win_seat_notify_remote_exit(Seat *seat)
}
}
static void win_seat_notify_remote_exit(Seat *seat)
{
queue_toplevel_callback(exit_callback, NULL);
}
void timer_change_notify(unsigned long next)
{
unsigned long now = GETTICKCOUNT();