diff options
| author | Keith Vetter <keithv@fusion.com> | 1995-04-27 20:14:25 +0000 |
|---|---|---|
| committer | Keith Vetter <keithv@fusion.com> | 1995-04-27 20:14:25 +0000 |
| commit | 086a3eabb9f68c61bc44755a68edb4307a153f08 (patch) | |
| tree | 89ea771a2329bbbc43c37f3126f275b776790297 /src/windows/wintel/struct.h | |
| parent | cdd394f225858b85a43796386fdab6a41a463039 (diff) | |
| download | krb5-086a3eabb9f68c61bc44755a68edb4307a153f08.tar.gz krb5-086a3eabb9f68c61bc44755a68edb4307a153f08.tar.xz krb5-086a3eabb9f68c61bc44755a68edb4307a153f08.zip | |
Clean up of Windows telnet source
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5569 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/wintel/struct.h')
| -rw-r--r-- | src/windows/wintel/struct.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/windows/wintel/struct.h b/src/windows/wintel/struct.h index b31fa9a7c..cbea7850b 100644 --- a/src/windows/wintel/struct.h +++ b/src/windows/wintel/struct.h @@ -9,12 +9,12 @@ #define HCONNECTION HGLOBAL typedef struct CONNECTION { - HSCREEN hScreen; // handle to screen associated with connection + SCREEN *pScreen; // handle to screen associated with connection kstream ks; SOCKET socket; - int pnum; // port number associated with connection - int telstate; // telnet state for this connection - int substate; // telnet subnegotiation state + int pnum; // port number associated with connection + int telstate; // telnet state for this connection + int substate; // telnet subnegotiation state int termsent; int echo; int ugoahead; @@ -22,9 +22,8 @@ typedef struct CONNECTION { int timing; int backspace; int ctrl_backspace; - int termstate; // terminal type for this connection + int termstate; // terminal type for this connection int width; int height; BOOL bResizeable; } CONNECTION; - |
