revert 127010 until Jeremie polishes and fixes the integration
[mono.git] / mcs / class / corlib / System.Threading / WaitOrTimerCallback.cs
old mode 100755 (executable)
new mode 100644 (file)
index 98a76b3..349d6f6
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if NET_2_0
+using System.Runtime.InteropServices;
+#endif
 
 namespace System.Threading
 {
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public delegate void WaitOrTimerCallback(object state, bool timedOut);
 }