Where can I get a full list of all the functions that "#include <windows.h>" has?

I went to the reference page but i couldn't find a list of functions that are included in #include <windows.h>

If i somehow missed it, can anyone give me a link to the #include <windows.h> reference page?

Wikipedia wrote:
windows.h is a Windows-specific header file for the C/C++ programming language which contains declarations for all of the functions in the Windows API, all the common macros used by Windows programmers, and all the data types used by the various functions and subsystems.
http://en.wikipedia.org/wiki/Windows.h

You can find a list of functions in the Windows API here: https://msdn.microsoft.com/en-us/library/aa383749%28v=vs.85%29.aspx
Here's another winapi reference page. Not exactly what you're looking for but might be interesting to you.

https://msdn.microsoft.com/en-us/library/windows/desktop/ff818516%28v=vs.85%29.aspx
Thank you very much for those links.

But i have a question regarding windows. Since every window class has a windows procedure that is associated with all windows of the same class, does that windows procedure have a name? or does the name of the procedure matter at all?
or does the name of the procedure matter at all?

The name of the proceedure does not matter; only its address.

When a window class is registered using RegisterClassEx() the lpfnWndProc member of the WNDCLASSEX structure passed to this function is set to point at the proceedure for the new window class.

Andy

RegisterClassEx function
https://msdn.microsoft.com/en-us/library/windows/desktop/ms633587%28v=vs.85%29.aspx

WNDCLASSEX structure
https://msdn.microsoft.com/en-us/library/windows/desktop/ms633577%28v=vs.85%29.aspx
Topic archived. No new replies allowed.