https://github.com/p0dalirius/win32errorcodes
A small C/C++ library to lookup Windows error codes.
https://github.com/p0dalirius/win32errorcodes
c codes error lookup python win32
Last synced: about 2 months ago
JSON representation
A small C/C++ library to lookup Windows error codes.
- Host: GitHub
- URL: https://github.com/p0dalirius/win32errorcodes
- Owner: p0dalirius
- Created: 2023-02-12T09:55:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-01T08:25:42.000Z (over 1 year ago)
- Last Synced: 2024-12-18T18:45:25.568Z (10 months ago)
- Topics: c, codes, error, lookup, python, win32
- Language: C
- Homepage:
- Size: 1.35 MB
- Stars: 18
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README

A small C/C++ library to lookup Windows error codes.
![]()
![]()
![]()
## Usage:
### In C / C++
```c
const char* lookup_errorA(unsigned long errcode);
const wchar_t* lookup_errorW(unsigned long errcode);
```## In Python
```python
def win32_lookup_error(errcode:int) -> str;
```## Contributing
Pull requests are welcome. Feel free to open an issue if you want to add other features.