comparison dstep/foundation/NSError_bindings.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 19885b43130e
comparison
equal deleted inserted replaced
13:4f583f7e242e 14:89f3c3ef1fd2
1 module dstep.foundation.NSError_bindings;
2
3 import dstep.foundation.NSArray;
4 import dstep.foundation.NSDictionary;
5 import dstep.foundation.NSObject;
6 import dstep.objc.bridge.Bridge;
7 import dstep.objc.objc : id;
8
9
10 extern (C)
11 {
12 extern
13 {
14 package const id NSCocoaErrorDomain;
15 package const id NSPOSIXErrorDomain;
16 package const id NSOSStatusErrorDomain;
17 package const id NSMachErrorDomain;
18 package const id NSUnderlyingErrorKey;
19 package const id NSLocalizedDescriptionKey;
20 package const id NSLocalizedFailureReasonErrorKey;
21 package const id NSLocalizedRecoverySuggestionErrorKey;
22 package const id NSLocalizedRecoveryOptionsErrorKey;
23 package const id NSRecoveryAttempterErrorKey;
24 package const id NSStringEncodingErrorKey;
25 package const id NSURLErrorKey;
26 package const id NSFilePathErrorKey;
27 }
28 }
29