00001 00013 #ifndef NSTYPES_H_INCLUDED 00014 #define NSTYPES_H_INCLUDED 00015 00017 #define NSNotFound 0x7fffffff 00018 00020 typedef enum { 00022 NSCaseInsensitiveSearch = 0x0001, 00024 NSLiteralSearch = 0x0002, 00026 NSBackwardsSearch = 0x0004, 00028 NSAnchoredSearch = 0x0008, 00030 NSNumericSearch = 0x0010 00031 } NSStringSearchOption ; 00032 00034 typedef enum { 00036 NSOrderedAscending = 1, 00038 NSOrderedSame, 00040 NSOrderedDescending 00041 } NSComparisonResult ; 00042 00043 #endif /* NSTYPES_H_INCLUDED */ 00044