mssf_com/lib.rs
1// ------------------------------------------------------------
2// Copyright (c) Microsoft Corporation. All rights reserved.
3// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
4// ------------------------------------------------------------
5
6#![allow(
7 non_snake_case,
8 non_camel_case_types,
9 non_upper_case_globals,
10 clippy::all
11)]
12
13pub mod Microsoft;
14
15// expose mod directly
16#[cfg(feature = "ServiceFabric")]
17pub use Microsoft::ServiceFabric::*;
18
19// Special usage for mssf_pal.
20// See mssf_pal documentations for why this is used this way.
21#[cfg(feature = "ServiceFabric")]
22use mssf_pal::*;
23extern crate self as windows;
24extern crate self as windows_core;