Author: greatlrd
Date: Fri Jun 29 19:35:16 2007
New Revision: 27329
URL: http://svn.reactos.org/svn/reactos?rev=27329&view=rev
Log:
fixing another comping issue
Modified:
branches/ddk2003/include/ddk2003/cderr.h
branches/ddk2003/include/ddk2003/readme.txt
Modified: branches/ddk2003/include/ddk2003/cderr.h
URL: http://svn.reactos.org/svn/reactos/branches/ddk2003/include/ddk2003/cderr.h…
==============================================================================
--- branches/ddk2003/include/ddk2003/cderr.h (original)
+++ branches/ddk2003/include/ddk2003/cderr.h Fri Jun 29 19:35:16 2007
@@ -44,6 +44,7 @@
/* for Windows 2000/XP/ReactOS this is not in windows 2003 ddk */
#define FNERR_BUFFERTOOSMALL 0x3003
+#define FRERR_BUFFERLENGTHZERO 0x4001
#endif
Modified: branches/ddk2003/include/ddk2003/readme.txt
URL: http://svn.reactos.org/svn/reactos/branches/ddk2003/include/ddk2003/readme.…
==============================================================================
--- branches/ddk2003/include/ddk2003/readme.txt (original)
+++ branches/ddk2003/include/ddk2003/readme.txt Fri Jun 29 19:35:16 2007
@@ -15,9 +15,9 @@
------------------------------------------------------------
cderr.h
-Contain one change that does not exists in windows 2003sp1
+Contain change that does not exists in windows 2003sp1
But it does exists in ddk for windows 2000/XP,
-Regedit need it, it is FNERR_BUFFERTOOSMALL
+it is FNERR_BUFFERTOOSMALL, FRERR_BUFFERLENGTHZERO
warning.h / rpc.h
Contain one change, we do not use ms seh
Author: gedmurphy
Date: Fri Jun 29 03:14:37 2007
New Revision: 27321
URL: http://svn.reactos.org/svn/reactos?rev=27321&view=rev
Log:
- remove the object from the list
- fixes a bug when deleting a drive, then adding a new one directly after
Modified:
trunk/tools/RosTE/GUI/VirtualMachine.cs
Modified: trunk/tools/RosTE/GUI/VirtualMachine.cs
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosTE/GUI/VirtualMachine.cs?…
==============================================================================
--- trunk/tools/RosTE/GUI/VirtualMachine.cs (original)
+++ trunk/tools/RosTE/GUI/VirtualMachine.cs Fri Jun 29 03:14:37 2007
@@ -506,6 +506,7 @@
public void DeleteHardDisk(VMHardDrive vmhd)
{
+ hardDrives.Remove(vmhd);
vmhd.DeleteHardDrive(vmhd.DiskID);
}