Hi All,

I have the following two interfaces in the header file of a thirty party 
library.

@interface Test : NSObject
-(void)somefunction;
@end

@interface Test (Error)
-(BOOL)somefunction:(NSError **)error;
@end

The first one I know how to bind in the ApiDefinition.cs file
[BaseType (typeof (NSObject))]
interface Test {
   [Export ("somefunction")]
   void SomeFunction();
}

The second interface I don't have a clue how to deal with it.
Can anyone please help me?

Regards

Danny
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to