cat_dev/
lib.rs

1#![doc = include_str!("../README.md")]
2#![allow(
3	// I dislike this rule... We import things elsewhere, usually outside of
4  // modules themselves.
5	clippy::module_name_repetitions,
6)]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8
9pub mod errors;
10pub mod fsemul;
11pub mod mion;
12#[cfg_attr(docsrs, doc(cfg(any(feature = "clients", feature = "servers"))))]
13#[cfg(any(feature = "clients", feature = "servers"))]
14pub mod net;
15
16/// A Wii-U Title ID.
17///
18/// Wii-U Title IDs are normally 64 bits, but are generally treated by the
19/// community as two seperate things. As the upper 32 bits represent the
20/// general properties of the title. While the bottom 32 bits usually uniquely
21/// identify the title itself.
22///
23/// TODO(mythra): find a better place to put this type.
24pub type TitleID = (u32, u32);