This project demonstrates how to resolve Windows API functions manually without using the WinAPI.
It works by:
- Accessing the PEB (Process Environment Block)
- Enumerating loaded modules via PEB_LDR_DATA
- Parsing the PE Export Directory
- Resolving function addresses manually
The results are compared against the real WinAPI implementation.
NOTE: THIS IS FOR EDUCATIONAL PURPOSES ONLY.
