An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

![](./.github/banner.png)


A small C/C++ library to lookup Windows error codes.


GitHub release (latest by date)

YouTube Channel Subscribers


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