win_wrap/lib.rs
1/*
2 * Copyright (c) 2023. The RigelA open source project team and
3 * its contributors reserve all rights.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and limitations under the License.
12 */
13
14#![doc = include_str!("../README.md")]
15
16#[cfg(feature = "audio")]
17pub mod audio;
18#[cfg(feature = "com")]
19pub mod com;
20#[cfg(feature = "common")]
21pub mod common;
22#[cfg(feature = "control")]
23pub mod control;
24#[cfg(feature = "ext")]
25pub mod ext;
26#[cfg(feature = "graphic")]
27pub mod graphic;
28#[cfg(feature = "hook")]
29pub mod hook;
30#[cfg(feature = "input")]
31pub mod input;
32#[cfg(feature = "memory")]
33pub mod memory;
34#[cfg(feature = "message")]
35pub mod message;
36#[cfg(feature = "msaa")]
37pub mod msaa;
38#[cfg(feature = "pdh")]
39pub mod pdh;
40#[cfg(feature = "registry")]
41pub mod registry;
42#[cfg(feature = "shell")]
43pub mod shell;
44#[cfg(feature = "threading")]
45pub mod threading;
46#[cfg(feature = "tts")]
47pub mod tts;
48#[cfg(feature = "uia")]
49pub mod uia;