2
0
Эх сурвалжийг харах

2003-11-13 Andreas Nahr <[email protected]>

	* ICollectData.cs: Fixed signature

svn path=/trunk/mcs/; revision=19955
Andreas N 22 жил өмнө
parent
commit
a41bcb0ed3

+ 4 - 0
mcs/class/System/System.Diagnostics/ChangeLog

@@ -1,3 +1,7 @@
+2003-11-13  Andreas Nahr <[email protected]>
+
+	* ICollectData.cs: Fixed signature
+
 2003-11-12  Andreas Nahr <[email protected]>
 
 	* ICollectData.cs: Added missing attribute

+ 4 - 4
mcs/class/System/System.Diagnostics/ICollectData.cs

@@ -18,10 +18,10 @@ namespace System.Diagnostics
 	public interface ICollectData {
 		void CloseData ();
 		void CollectData (
-			int id, 
-			IntPtr valueName, 
-			IntPtr data, 
-			int totalBytes, 
+			[In] int id, 
+			[In] IntPtr valueName, 
+			[In] IntPtr data, 
+			[In] int totalBytes, 
 			out IntPtr res);
 	}
 }