Welcome to mirror list, hosted at ThFree Co, Russian Federation.

winseat.h « WINDOWS - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6b5fa960d284fee87b6cc76f53874d043eea608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Small implementation of Seat and LogPolicy shared between window.c
 * and windlg.c.
 */

typedef struct WinGuiSeat WinGuiSeat;

struct WinGuiSeat {
    HWND term_hwnd;
    Seat seat;
    LogPolicy logpolicy;
};

extern const LogPolicyVtable win_gui_logpolicy_vt; /* in windlg.c */