Line discipline module now uses dynamically allocated data. Also
[u/mdw/putty] / winstuff.h
index d5c08a2..5ce7387 100644 (file)
@@ -18,8 +18,6 @@
 #endif
 #endif
 
-typedef struct config_tag Config;      /* duplicated from putty.h */
-
 #define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
 #define PUTTY_REG_PARENT "Software\\SimonTatham"
 #define PUTTY_REG_PARENT_CHILD "PuTTY"
@@ -176,6 +174,6 @@ void EnableSizeTip(int bEnable);
 #define mb_to_wc(cp, flags, mbstr, mblen, wcstr, wclen) \
        MultiByteToWideChar(cp, flags, mbstr, mblen, wcstr, wclen)
 #define wc_to_mb(cp, flags, wcstr, wclen, mbstr, mblen, def, defused) \
-       WideCharToMultiByte(cp, flags, mbstr, mblen, wcstr, wclen, def,defused)
+       WideCharToMultiByte(cp, flags, wcstr, wclen, mbstr, mblen, def,defused)
 
 #endif