Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / class / corlib / System.Threading / ContextCallback.cs
index 1bdde0dca398968d3c19216e91bd9fa2c88190d6..661baa4762be27770d6b4db4272ec0fa3547a369 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
-using System;
+using System.Runtime.InteropServices;
 
 namespace System.Threading {
 
+       [ComVisible (true)]
        public delegate void ContextCallback (object state);
 
 }
-
-#endif