Skip to content

Commit

Permalink
Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
Gurgel100 committed Oct 26, 2023
1 parent 665b58a commit 16b71e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion msfs/src/communication.rs → msfs/src/commbus.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! This file implements the communication API available in the MSFS SDK.
//! Bindings for the commbus API available in the MSFS SDK.
use std::{
ffi::{self, CString},
Expand Down
5 changes: 4 additions & 1 deletion msfs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//! - MSFS Gauge API
//! - SimConnect API
//! - NanoVG API
//! - CommBus API
//!
//! ## Building
//!
Expand All @@ -30,7 +31,6 @@
mod msfs;
pub mod sim_connect;
pub mod sys;
pub mod communication;

pub use msfs::*;

Expand All @@ -40,5 +40,8 @@ pub mod legacy;
#[cfg(any(target_arch = "wasm32", doc))]
pub mod nvg;

#[cfg(any(target_arch = "wasm32", doc))]
pub mod commbus;

#[doc(hidden)]
pub mod executor;

0 comments on commit 16b71e6

Please sign in to comment.