]>
Commit | Line | Data |
---|---|---|
9ce05555 A |
1 | /* |
2 | * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. | |
7 | * | |
8 | * This file contains Original Code and/or Modifications of Original Code | |
9 | * as defined in and that are subject to the Apple Public Source License | |
10 | * Version 2.0 (the 'License'). You may not use this file except in | |
11 | * compliance with the License. Please obtain a copy of the License at | |
12 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
13 | * file. | |
14 | * | |
15 | * The Original Code and all software distributed under the License are | |
16 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
20 | * Please see the License for the specific language governing rights and | |
21 | * limitations under the License. | |
22 | * | |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | /* CoreFoundation.h | |
26 | Copyright (c) 1998-2003, Apple, Inc. All rights reserved. | |
27 | */ | |
28 | ||
29 | #if !defined(__COREFOUNDATION_COREFOUNDATION__) | |
30 | #define __COREFOUNDATION_COREFOUNDATION__ 1 | |
31 | ||
32 | #include <CoreFoundation/CFBase.h> | |
33 | #include <CoreFoundation/CFArray.h> | |
34 | #include <CoreFoundation/CFBag.h> | |
35 | #include <CoreFoundation/CFCharacterSet.h> | |
36 | #include <CoreFoundation/CFData.h> | |
37 | #include <CoreFoundation/CFDate.h> | |
38 | #include <CoreFoundation/CFDictionary.h> | |
39 | #include <CoreFoundation/CFNumber.h> | |
40 | #include <CoreFoundation/CFPropertyList.h> | |
41 | #include <CoreFoundation/CFSet.h> | |
42 | #include <CoreFoundation/CFString.h> | |
43 | #include <CoreFoundation/CFTimeZone.h> | |
44 | #include <CoreFoundation/CFTree.h> | |
45 | #include <CoreFoundation/CFURL.h> | |
46 | #include <CoreFoundation/CFXMLNode.h> | |
47 | #include <CoreFoundation/CFXMLParser.h> | |
48 | ||
49 | #include <stdarg.h> | |
50 | #include <assert.h> | |
51 | #include <ctype.h> | |
52 | #include <errno.h> | |
53 | #include <float.h> | |
54 | #include <limits.h> | |
55 | #include <locale.h> | |
56 | #include <math.h> | |
57 | #include <setjmp.h> | |
58 | #include <signal.h> | |
59 | #include <stddef.h> | |
60 | #include <stdio.h> | |
61 | #include <stdlib.h> | |
62 | #include <string.h> | |
63 | #include <time.h> | |
64 | ||
65 | #if defined(__STDC_VERSION__) && (199901L <= __STDC_VERSION__) | |
66 | ||
67 | #include <inttypes.h> | |
68 | //#include <iso646.h> | |
69 | #include <stdbool.h> | |
70 | #include <stdint.h> | |
71 | ||
72 | #endif | |
73 | ||
74 | #include <CoreFoundation/CFBinaryHeap.h> | |
75 | #include <CoreFoundation/CFBitVector.h> | |
76 | #include <CoreFoundation/CFBundle.h> | |
77 | #include <CoreFoundation/CFByteOrder.h> | |
78 | #include <CoreFoundation/CFPlugIn.h> | |
79 | #include <CoreFoundation/CFURLAccess.h> | |
80 | #include <CoreFoundation/CFUUID.h> | |
81 | ||
82 | #if defined(__MACH__) | |
83 | #include <CoreFoundation/CFUserNotification.h> | |
84 | #endif | |
85 | ||
86 | #if defined(__MACH__) || defined(__WIN32__) | |
87 | #include <CoreFoundation/CFMachPort.h> | |
88 | #include <CoreFoundation/CFMessagePort.h> | |
89 | #include <CoreFoundation/CFRunLoop.h> | |
90 | #include <CoreFoundation/CFSocket.h> | |
91 | #endif | |
92 | ||
93 | ||
94 | #endif /* ! __COREFOUNDATION_COREFOUNDATION__ */ | |
95 |