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