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