1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! Rust bindings for the Warcraft 3 Stats Observer API memory map.
//!
//! Provides safe access to the shared-memory block exported by the Warcraft III
//! Stats Observer API. Use [`ObserverHandle`] as the entry point — it owns the
//! Windows file-mapping handles and dereferences to [`ObserverData`].
//!
//! # Example
//!
//! ```no_run
//! use warcraft3_stats_observer::ObserverHandle;
//!
//! let observer = ObserverHandle::new()
//! .expect("Warcraft III not running or stats observer not available");
//!
//! println!("refresh rate: {} ms", { observer.refresh_rate });
//! ```
//!
//! # Packed structs
//!
//! All structs are `#[repr(C, packed)]` to mirror the layout of
//! the underlying memory map. Reading a misaligned field by reference is
//! undefined behaviour, so copy fields with `{}` before borrowing or
//! formatting them:
//!
//! ```ignore
//! println!("gold: {}", { player.gold });
//! ```
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;