? swf.diff
? class/Mono.Data.SybaseClient/.makefrag
? class/Mono.Data.SybaseClient/.response
? class/Mono.Data.SybaseClient/library-deps.stamp
? class/Mono.Data.Tds/.makefrag
? class/Mono.Data.Tds/.response
? class/Mono.Data.Tds/library-deps.stamp
? class/System.Windows.Forms/System.Windows.Forms/bin
? class/System.Windows.Forms/System.Windows.Forms/obj
? class/System.Windows.Forms/System.Windows.Forms.Design/bin
? class/System.Windows.Forms/System.Windows.Forms.Design/obj
Index: class/System.Windows.Forms/list.unix
===================================================================
RCS file: /mono/mcs/class/System.Windows.Forms/list.unix,v
retrieving revision 1.4
diff -u -r1.4 list.unix
--- class/System.Windows.Forms/list.unix	18 Nov 2002 07:05:57 -0000	1.4
+++ class/System.Windows.Forms/list.unix	25 Nov 2002 00:01:18 -0000
@@ -1,3 +1,9 @@
+System.Windows.Forms/win32Enums.cs
+System.Windows.Forms/win32Handles.cs
+System.Windows.Forms/win32Interfaces.cs
+System.Windows.Forms/win32RegistryUtil.cs
+System.Windows.Forms/win32Structs.cs
+System.Windows.Forms/win32functions.cs
 System.Resources/ResXResourceReader.cs
 System.Resources/ResXResourceWriter.cs
 System.Windows.Forms/AccessibleEvents.cs
@@ -314,12 +320,6 @@
 System.Windows.Forms/UserControl.cs
 System.Windows.Forms/View.cs
 System.Windows.Forms/VScrollBar.cs
-System.Windows.Forms/win32Enums.cs
-System.Windows.Forms/win32Handles.cs
-System.Windows.Forms/win32Interfaces.cs
-System.Windows.Forms/win32RegistryUtil.cs
-System.Windows.Forms/win32Structs.cs
-System.Windows.Forms/win32functions.cs
 System.Windows.Forms.Design/AnchorEditor.cs
 System.Windows.Forms.Design/AssemblyInfo.cs
 System.Windows.Forms.Design/AxImporter.cs
Index: class/System.Windows.Forms/System.Windows.Forms/Menu.cs
===================================================================
RCS file: /mono/mcs/class/System.Windows.Forms/System.Windows.Forms/Menu.cs,v
retrieving revision 1.17
diff -u -r1.17 Menu.cs
--- class/System.Windows.Forms/System.Windows.Forms/Menu.cs	24 Nov 2002 04:31:26 -0000	1.17
+++ class/System.Windows.Forms/System.Windows.Forms/Menu.cs	25 Nov 2002 00:01:20 -0000
@@ -154,9 +154,9 @@
 			// FIXME: Pay attention, do not assign an id to a "stranger"
 			// If reusing IDs, get one from array first
 			if ( mi.MenuID_ == INVALID_MENU_ID) {
-				mi.MenuID_ = MenuIDs_++;
+				mi.MenuID_ = (uint) MenuIDs_++;
 			}
-			return  (uint)mi.MenuID;
+			return  (uint) mi.MenuID_;
 		}
 
 		//inherited
Index: class/System.Windows.Forms/System.Windows.Forms/NativeWindow.cs
===================================================================
RCS file: /mono/mcs/class/System.Windows.Forms/System.Windows.Forms/NativeWindow.cs,v
retrieving revision 1.10
diff -u -r1.10 NativeWindow.cs
--- class/System.Windows.Forms/System.Windows.Forms/NativeWindow.cs	24 Nov 2002 04:31:26 -0000	1.10
+++ class/System.Windows.Forms/System.Windows.Forms/NativeWindow.cs	25 Nov 2002 00:01:21 -0000
@@ -66,11 +66,11 @@
 
 			if (!registeredClass) {
 				Win32.WndProc wp = new Win32.WndProc (WndProc);
-				Win32.WNDCLASS wndClass = new Win32.WNDCLASS();
+				WNDCLASS wndClass = new WNDCLASS();
 
-				wndClass.style = (int) (Win32.CS_OWNDC |
-							Win32.CS_VREDRAW |
-							Win32.CS_HREDRAW);
+				wndClass.style = (int) (CS_.CS_OWNDC |
+							CS_.CS_VREDRAW |
+							CS_.CS_HREDRAW);
 				wndClass.lpfnWndProc = wp;
 				wndClass.cbClsExtra = 0;
 				wndClass.cbWndExtra = 0;
@@ -81,7 +81,7 @@
 				wndClass.lpszMenuName = "";
 				wndClass.lpszClassName = "mono_native_window";
 
-				if (Win32.RegisterClassA(wndClass) != 0) {
+				if (Win32.RegisterClassA(ref wndClass) != 0) {
 					registeredClass = true;
 				} else {
 					windowHandle = (IntPtr)0;
@@ -190,7 +190,7 @@
 
 		protected virtual void WndProc (ref Message m) 
 		{
-			if (m.Msg == Win32.WM_CREATE)
+			if (m.Msg == (int) Msg.WM_CREATE)
 				Console.WriteLine ("NW WndProc WM_CREATE");
 			DefWndProc (ref m);
 		}
@@ -219,11 +219,11 @@
 			message.LParam = lParam;
  			message.Result = (IntPtr) 0;
 
-			if (msg == Win32.WM_CREATE)
+			if (msg == (int) Msg.WM_CREATE)
 				Console.WriteLine ("WM_CREATE (static)");
 
  			if (window != null) {
-			if (msg == Win32.WM_CREATE)
+			if (msg == (int) Msg.WM_CREATE)
 				Console.WriteLine ("WM_CREATE (static != null)");
  				window.WndProc(ref message);
  			} else {
Index: class/System.Windows.Forms/System.Windows.Forms/System.Windows.Forms.csproj
===================================================================
RCS file: /mono/mcs/class/System.Windows.Forms/System.Windows.Forms/System.Windows.Forms.csproj,v
retrieving revision 1.7
diff -u -r1.7 System.Windows.Forms.csproj
--- class/System.Windows.Forms/System.Windows.Forms/System.Windows.Forms.csproj	18 Nov 2002 04:46:33 -0000	1.7
+++ class/System.Windows.Forms/System.Windows.Forms/System.Windows.Forms.csproj	25 Nov 2002 00:01:26 -0000
@@ -92,6 +92,11 @@
                     AssemblyName = "System.Drawing.Design"
                     HintPath = "..\..\..\..\..\WINNT\Microsoft.NET\Framework\v1.0.3705\System.Drawing.Design.dll"
                 />
+                <Reference
+                    Name = "System.Windows.Forms.Design"
+                    Project = "{A38C110F-63F4-4B53-A67E-9A46681C768E}"
+                    Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"
+                />
             </References>
         </Build>
         <Files>
@@ -1213,11 +1218,6 @@
                 />
                 <File
                     RelPath = "PropertySort.cs"
-                    SubType = "Code"
-                    BuildAction = "Compile"
-                />
-                <File
-                    RelPath = "PropertyTab.cs"
                     SubType = "Code"
                     BuildAction = "Compile"
                 />
