The WinSock library is now loaded at run-time, which means we can
[u/mdw/putty] / sizetip.c
index ab709b5..2073a09 100644 (file)
--- a/sizetip.c
+++ b/sizetip.c
@@ -1,10 +1,8 @@
-#include <windows.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <tchar.h>
 
 #include "putty.h"
-#include "winstuff.h"
 
 static ATOM tip_class = 0;
 
@@ -42,7 +40,7 @@ static LRESULT CALLBACK SizeTipWndProc(HWND hWnd, UINT nMsg,
            Rectangle(hdc, cr.left, cr.top, cr.right, cr.bottom);
 
            wtlen = GetWindowTextLength(hWnd);
-           wt = (LPTSTR) smalloc((wtlen + 1) * sizeof(TCHAR));
+           wt = (LPTSTR) snewn(wtlen + 1, TCHAR);
            GetWindowText(hWnd, wt, wtlen + 1);
 
            SetTextColor(hdc, tip_text);