Added automatic version distinguishing code, to differentiate releases
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index a456fdb..4fed74d 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -95,6 +95,8 @@ typedef struct {
     int port;
     enum { PROT_TELNET, PROT_SSH } protocol;
     int close_on_exit;
+    /* SSH options */
+    int nopty;
     /* Telnet options */
     char termtype[32];
     char termspeed[32];
@@ -111,6 +113,7 @@ typedef struct {
     int savelines;
     int dec_om;
     int wrap_mode;
+    int lfhascr;
     int win_name_always;
     int width, height;
     char font[64];
@@ -224,6 +227,11 @@ void *saferealloc(void *, size_t);
 void safefree(void *);
 
 /*
+ * Exports from version.c.
+ */
+extern char ver[];
+
+/*
  * A debug system.
  */
 #ifdef DEBUG