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

Jun 3, 2015 at 5:41am
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?

Jun 3, 2015 at 7:46am
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
Jun 3, 2015 at 8:37am
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
Jun 3, 2015 at 8:25pm
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?
Jun 4, 2015 at 12:46am
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.