# 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.