1 #![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
2 #[cfg(feature = "Phone_ApplicationModel")]
3 pub mod ApplicationModel;
4 #[cfg(feature = "Phone_Devices")]
5 pub mod Devices;
6 #[cfg(feature = "Phone_Management")]
7 pub mod Management;
8 #[cfg(feature = "Phone_Media")]
9 pub mod Media;
10 #[cfg(feature = "Phone_Notification")]
11 pub mod Notification;
12 #[cfg(feature = "Phone_PersonalInformation")]
13 pub mod PersonalInformation;
14 #[cfg(feature = "Phone_Speech")]
15 pub mod Speech;
16 #[cfg(feature = "Phone_StartScreen")]
17 pub mod StartScreen;
18 #[cfg(feature = "Phone_System")]
19 pub mod System;
20 #[cfg(feature = "Phone_UI")]
21 pub mod UI;
22 #[link(name = "windows")]
23 extern "system" {}
24