mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 20:19:40 +00:00
(fixes issue #270) by Sherm Pendley, TRUE/FALSE definition and header fixes
This commit is contained in:
parent
8ba856275e
commit
ba24e98557
@ -79,6 +79,14 @@ static inline CFRange CFRangeMake(CFIndex loc,CFIndex len){
|
||||
return result;
|
||||
}
|
||||
|
||||
#ifndef TRUE
|
||||
#define TRUE ((BOOL)1)
|
||||
#endif
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE ((BOOL)0)
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
kCFCompareLessThan = -1,
|
||||
kCFCompareEqualTo = 0,
|
||||
|
@ -34,6 +34,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
#import <inttypes.h>
|
||||
#endif
|
||||
|
||||
#import <CoreFoundation/CoreFoundation.h>
|
||||
|
||||
#import <Foundation/FoundationErrors.h>
|
||||
#import <Foundation/NSAffineTransform.h>
|
||||
#import <Foundation/NSArchiver.h>
|
||||
|
Loading…
Reference in New Issue
Block a user