Some checks failed
Build and Test / super-mario-maker (push) Failing after 4m39s
Build and Test / wii-u-chat (push) Successful in 6m28s
Build and Test / puyopuyo (push) Successful in 6m28s
Build and Test / mario-tennis (push) Successful in 6m29s
Build and Test / fast-racing-neo (push) Successful in 6m28s
Build and Test / wii-sports-club (push) Successful in 6m28s
Build and Test / friends (push) Successful in 6m28s
Build and Test / splatoon (push) Successful in 6m29s
Build and Test / minecraft-wiiu (push) Successful in 6m30s
Build and Test / splatoon-testfire (push) Successful in 6m38s
Build and Test / sonic-transformed (push) Successful in 6m49s
32 lines
714 B
Rust
32 lines
714 B
Rust
#![allow(dead_code)]
|
|
// rnex makes extensive use of async functions in public traits
|
|
// this is however fine because these traits should never(and i mean NEVER) be used dynamically
|
|
#![allow(async_fn_in_trait)]
|
|
//#![warn(missing_docs)]
|
|
|
|
#[cfg(feature = "big_pid")]
|
|
pub type PID = i64;
|
|
#[cfg(not(feature = "big_pid"))]
|
|
pub type PID = i32;
|
|
|
|
extern crate self as rnex_core;
|
|
|
|
pub mod prudp;
|
|
pub mod rmc;
|
|
//mod protocols;
|
|
|
|
pub mod common;
|
|
pub mod executables;
|
|
pub mod grpc;
|
|
pub mod kerberos;
|
|
pub mod nex;
|
|
pub mod reggie;
|
|
pub mod result;
|
|
pub mod rnex_proxy_common;
|
|
pub mod util;
|
|
pub mod versions;
|
|
pub use macros::*;
|
|
|
|
pub mod config {
|
|
pub const FEATURE_HAS_STRUCT_HEADER: bool = cfg!(feature = "rmc_struct_header");
|
|
}
|