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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
module cfuncs { header "cfuncs.h" }
module ctypes {
header "ctypes.h"
explicit module bits {
header "ctypes/bits.h"
export *
}
export *
}
module stdio { header "stdio.h" }
module cvars { header "cvars.h" }
module blocks {
header "blocks.h"
export *
}
// Note: The real Darwin includes stdc stuff. This one is just for testing
// Darwin-specific things.
module Darwin {
module MacTypes {
header "MacTypes.h"
export *
}
}
module CoreMIDI {
header "CoreMIDI.h"
export *
}
module Dispatch {
header "dispatch.h"
export *
}
module MachO {
header "dyld.h"
export *
}
module AVFoundation {
header "AVFoundation.h"
export *
}
module CoreGraphics {
header "CoreGraphics.h"
export *
}
module CoreFoundation {
header "CoreFoundation.h"
export *
}
module Foundation {
header "Foundation.h"
export *
}
module AppKit {
header "AppKit.h"
export *
}
module UIKit {
header "UIKit.h"
export *
}
module NotificationCenter {
header "NotificationCenter.h"
export *
}
module objc_ext { header "objc_ext.h" }
module macros {
header "macros.h"
// Don't re-export macros_private_impl.
export macros_impl
}
module macros_impl { header "macros_impl.h" }
module macros_private_impl { header "macros_private_impl.h" }
module user_objc { header "user_objc.h" }
module Properties {
header "Properties.h"
export *
}
module Security {
header "Authorization.h"
header "SecItem.h"
export *
}
module nullability {
header "nullability.h"
export *
}
module objc_structs {
header "objc_structs.h"
export *
}
module enums_using_attributes {
header "enums_using_attributes.h"
}
module errors {
header "errors.h"
export *
}
module c_simd {
header "simd.h"
export *
}
module objc_generics {
header "objc_generics.h"
export *
}
module CoreMedia {
header "CoreMedia.h"
export *
}
module OtherSubscripts {
header "OtherSubscripts.h"
export *
}
module bridged_typedef {
header "bridged_typedef.h"
export *
}
module WinBOOL {
header "winbool.h"
export *
}
module ObjCConcurrency {
header "ObjCConcurrency.h"
export *
}
module EffectfulProperties {
header "EffectfulProperties.h"
export *
}
module IncompleteTypes {
header "IncompleteTypes.h"
export *
}
|