Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/provrb/native-docs
Win32 native exports API with documentation
https://github.com/provrb/native-docs
Last synced: 11 days ago
JSON representation
Win32 native exports API with documentation
- Host: GitHub
- URL: https://github.com/provrb/native-docs
- Owner: provrb
- License: cc0-1.0
- Created: 2024-11-26T20:20:26.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-26T22:51:03.000Z (about 2 months ago)
- Last Synced: 2024-11-26T23:20:29.722Z (about 2 months ago)
- Language: Python
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Info
This is a repository I made for myself so I could save all native Win32 API functions in one place.
The table includes the name of the function, and the link for documentation.
```tool.py``` parses exports from the ```dumpbin``` command into a markdown file.### Running the tool
You can run ```tool.py``` with the command line. ```tool.py``` takes 3 arguments:
1. [in] File to read from and parse
2. [in] File to write all parsed output
3. [in] [optional] The name of the dll these functions are exported from.An example:
```py tool.py ntexports.txt nt.md ntdll.dll```Made this script in like 30 minutes, don't expect production quality. Wasn't even gonna post the script.