mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-07-08 00:39:43 +08:00
11 lines
295 B
Rust
11 lines
295 B
Rust
use memflow::prelude::v1::*;
|
|
|
|
/// Represents a node in the linked list of exposed interfaces.
|
|
#[derive(Pod)]
|
|
#[repr(C)]
|
|
pub struct InterfaceReg {
|
|
pub create_fn: Pointer64<()>, // 0x0000
|
|
pub name: Pointer64<ReprCString>, // 0x0008
|
|
pub next: Pointer64<InterfaceReg>, // 0x0010
|
|
}
|