I am more experienced on the POSIX side and I am currently struggling with the Windows API.
I would like to find a single entry point for the documentation and I have yet not found the documentation for <wincon.h>
. I also can't figure out how much of the standard headers (C99/C11) are available.
For exemple I can find winreg.h but not wincon.h (Error 404). On the RegDeleteKeyA documentation I can see the LSTATUS
type but it is not documented.
What is the method to navigate through this API? Where is entry-point?
I agree that my question is somehow unclear, but my point is that I am looking for an equivalent of the man pages on Linux, but for the Windows API. The format is not important, I just need a manual.
More concrete examples:
- Can I use
int32_t
on Windows? Where is it documented? - What is the definition of
LSTATUS
? - Where can I find some examples to read the registry using
winreg
? ...