h1emu-core 0.8.11

Utility library used in h1emu.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate wee_alloc;

// Use `wee_alloc` as the global allocator.
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;

#[cfg(feature = "crc")]
pub mod crc;
#[cfg(feature = "jenkins")]
pub mod jenkins;
pub mod lib_utils;
#[cfg(feature = "rc4")]
pub mod rc4;
#[cfg(feature = "soeprotocol")]
pub mod soeprotocol;
#[cfg(feature = "game-utils")]
pub mod utils;