ghostptr 0.2.3

Lightweight, ergonomic library for Windows process interaction.
Documentation

ghostptr

MIT License crates.io docs.rs

Lightweight, ergonomic library for low‑level Windows process interaction.

Design

The purpose of this library is to provide simple, minimal abstractions over Windows NT primitives. The API offers ergonomic access to process handles and memory while preserving safety wherever it can be guaranteed..

Installation

[dependencies]

ghostptr = "0.2.3"

Quick Start

fn main() -> ghostptr::Result<()> {
    let process = Process::current();
	let pid = process.pid()?;

	println!("{}", pid);

	Ok(())
}