1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/* CoreFoundation.h
Copyright (c) 1998-2019, Apple Inc. and the Swift project authors
Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
*/
#if !defined(__COREFOUNDATION_COREFOUNDATION__)
#define __COREFOUNDATION_COREFOUNDATION__ 1
#define __COREFOUNDATION__ 1
#if !defined(CF_EXCLUDE_CSTD_HEADERS)
#include <sys/types.h>
#include <stdarg.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#include <math.h>
#if !defined(__wasi__)
#include <setjmp.h>
#endif
#include <signal.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#if defined(__STDC_VERSION__) && (199901L <= __STDC_VERSION__)
#include <inttypes.h>
#include <stdbool.h>
#include <stdint.h>
#endif
#endif
#include "CFBase.h"
#include "CFArray.h"
#include "CFBag.h"
#include "CFBinaryHeap.h"
#include "CFBitVector.h"
#include "CFByteOrder.h"
#include "CFCalendar.h"
#include "CFCharacterSet.h"
#include "CFData.h"
#include "CFDate.h"
#include "CFDateFormatter.h"
#include "CFDictionary.h"
#include "CFError.h"
#include "CFLocale.h"
#include "CFNumber.h"
#include "CFNumberFormatter.h"
#if !TARGET_OS_WASI
#include "CFPreferences.h"
#endif
#include "CFPropertyList.h"
#include "CFSet.h"
#include "CFString.h"
#include "CFStringEncodingExt.h"
#include "CFTimeZone.h"
#include "CFTree.h"
#include "CFURL.h"
#include "CFURLAccess.h"
#include "CFUUID.h"
#include "CFUtilities.h"
#include "CFBundle.h"
#include "CFConstantKeys.h"
#include "ForSwiftFoundationOnly.h"
#if TARGET_OS_OSX || TARGET_OS_IPHONE || TARGET_OS_WIN32 || TARGET_OS_LINUX
#include "CFMessagePort.h"
#include "CFPlugIn.h"
#include "CFRunLoop.h"
#include "CFStream.h"
#include "CFSocket.h"
#include "CFMachPort.h"
#include "CFAttributedString.h"
#include "CFNotificationCenter.h"
#endif
#if TARGET_OS_OSX || TARGET_OS_IPHONE
#endif
#include "CFUserNotification.h"
// #if !DEPLOYMENT_RUNTIME_SWIFT
// #include "CFXMLNode.h"
// #include "CFXMLParser.h"
// #endif
#endif /* ! __COREFOUNDATION_COREFOUNDATION__ */
|