summaryrefslogtreecommitdiff
path: root/CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs
diff options
context:
space:
mode:
Diffstat (limited to 'CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs')
-rw-r--r--CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs b/CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs
index e70491f6..b71e61a4 100644
--- a/CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs
+++ b/CocoaSharp/Foundation/Protocols/Delegates/NSMachPortDelegate.cs
@@ -1 +1 @@
-using ObjectiveC; using System; using SharpSwift.Attributes; using System.Collections.Generic; namespace Foundation { /// <summary> /// The NSMachPortDelegate protocol defines the optional methods implemented by delegates of NSMachPort objects. /// </summary> /// <see cref="https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/NSMachPortDelegate_Protocol/index.html#//apple_ref/occ/intf/NSMachPortDelegate"/> [iOSVersion(4)] public interface NSMachPortDelegate//: NSObjectProtocol, NSPortDelegate { /// <summary> /// Process an incoming Mach message. /// </summary> /// <param name="machMessage">A pointer to a Mach message, cast as a pointer to void.</param> [iOSVersion(2)] [Export("handleMachMessage")] void HandleMachMessage(UnsafePointer<Action> machMessage); } } \ No newline at end of file
+using ObjectiveC; using System; using SharpSwift.Attributes; using System.Collections.Generic; namespace Foundation { /// <summary> /// The NSMachPortDelegate protocol defines the optional methods implemented by delegates of NSMachPort objects. /// </summary> /// <see cref="https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/NSMachPortDelegate_Protocol/index.html#//apple_ref/occ/intf/NSMachPortDelegate"/> [iOSVersion(4)] [Export("")] public interface NSMachPortDelegate//: NSObjectProtocol, NSPortDelegate { /// <summary> /// Process an incoming Mach message. /// </summary> /// <param name="machMessage">A pointer to a Mach message, cast as a pointer to void.</param> //[iOSVersion(2)] //[Export("handleMachMessage")] //[InheritOptional] //void HandleMachMessage(UnsafeMutablePointer machMessage); } } \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback