summaryrefslogtreecommitdiffstats
path: root/src/windows/wintel/wt-proto.h
blob: 15b9c1a8e90094d50d24ccbf4a32876e9fd25a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* wt-proto.h */
BOOL
InitApplication(
    HINSTANCE
    );

BOOL
InitInstance(
    HINSTANCE,
    int
    );

LRESULT
CALLBACK
MainWndProc(
    HWND,
    UINT,
    WPARAM,
    LPARAM
    );

INT_PTR
CALLBACK
OpenTelnetDlg(
    HWND,
    UINT,
    WPARAM,
    LPARAM
    );

int
TelnetSend(
    kstream,
    char *,
    int,
    int
    );

int
OpenTelnetConnection(
    void
    );

int
DoDialog(
    char *szDialog,
    DLGPROC lpfnDlgProc
    );

BOOL
parse_cmdline(
    char *cmdline
    );

CONNECTION *
GetNewConnection(
    void
    );

void
start_negotiation(
    kstream ks
    );