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