summaryrefslogtreecommitdiffstats
path: root/src/windows/wintel/struct.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/wintel/struct.h')
-rw-r--r--src/windows/wintel/struct.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/windows/wintel/struct.h b/src/windows/wintel/struct.h
index b31fa9a7c4..cbea7850b8 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;
-