xref: /xnu-8020.121.3/osfmk/device/device.modulemap (revision fdd8201d7b966f0c3ea610489d29bd841d358941)
1*fdd8201dSApple OSS Distributionsmodule Darwin.device [system] {
2*fdd8201dSApple OSS Distributions  header "device/device_types.h"
3*fdd8201dSApple OSS Distributions  #ifdef XNU_KERNEL_PRIVATE
4*fdd8201dSApple OSS Distributions  // device_port.h is in the public SDK for macOS, but
5*fdd8201dSApple OSS Distributions  // mastered out of the public SDK for the other OSes.
6*fdd8201dSApple OSS Distributions  #endif
7*fdd8201dSApple OSS Distributions  #ifdef PLATFORM_MacOSX
8*fdd8201dSApple OSS Distributions  header "device/device_port.h"
9*fdd8201dSApple OSS Distributions  #endif
10*fdd8201dSApple OSS Distributions
11*fdd8201dSApple OSS Distributions  export *
12*fdd8201dSApple OSS Distributions}
13