Skip to content

p0dalirius/win32errorcodes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A small C/C++ library to lookup Windows error codes.
GitHub release (latest by date) YouTube Channel Subscribers

Usage:

In C / C++

const char* lookup_errorA(unsigned long errcode);
const wchar_t* lookup_errorW(unsigned long errcode);

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