Enabled thread safeness for wnd structure code.

diff --git a/windows/win.c b/windows/win.c
index d40e3bf..27db814 100644
--- a/windows/win.c
+++ b/windows/win.c
@@ -56,12 +56,7 @@
  */
 void WIN_LockWnds()
 {
-/*
-     This code will be released in the future
-     info : francois@macadamian.com
-     
     EnterCriticalSection(&WIN_CritSection);
-*/
 }
 
 /***********************************************************************
@@ -71,12 +66,7 @@
  */
 void WIN_UnlockWnds()
     {
-/*
-     This code will be released in the future
-     info : francois@macadamian.com
-     
         LeaveCriticalSection(&WIN_CritSection);
-*/
 }
 /***********************************************************************
  *           WIN_SuspendWndsLock