win_iter 0.1.4

A package that allows you to easily iterate over all running programs on Windows and filter them via architecture. This package only uses bindings for WinAPI functionality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# win_iter


This crate allows you to easily iterate over all running programs on Windows and the loaded modules inside of them. This crate aims to make interaction with processes and modules a much more relaxed experience since sometimes dealing with the Windows API can be a little annoying.


## Sizing

To keep the size of this crate down, I'm using direct bindings instead of any windows crates! This means that any functions you use are direct translations from C/C++ to Rust.

## Wrappers

Coming in a later update, my wrappers will provide a safer code experience with easy error handling, whilst keeping any overhead minimal.
## Note


This project is still in extremely early development and is primarily being developed for one of my main projects to avoid duplicate code, however will be updated and improved upon over time.