# wintypes
> A rust library that exports windows functions as types
# Usage
Once this library is downloaded you can just use a function as a type by DLL:
```rust
use wintypes::user32::FnMessageBoxA;
```
# Build
## Get DLLs exported functions
The first step is to get the exported functions of the DLLs:
```sh
## Generate the types
```sh
$ ./scripts/parse_doc_crates.py exports.json
```
# Credits
- `ntapi` and `winapi` for implementing windows functions as functions. This project scrapes prototypes from those crates.