FYI, ImGui is one of the libraries available with vcpkg.
FYII, when you add a URL to your comment either leave a space at the end or add empty formatting tags at the end. You typed a period and the URL interpreter added at as part of the link. Sometimes it works, most times you get a 404 error.
When I add a link,
https://github.com/ocornut/imgui, I use empty teletype tags to keep the URL "clean."
Reference about using tags here at CplusPlus:
https://cplusplus.com/articles/jEywvCM9/
https://cplusplus.com/articles/z13hAqkS/
About the formatting tags to the right of the edit box....you can use them, starting thread or reply. But the Preview feature won't work on opening topic comments until after you submit it. As you have found out. Editing the opening comment and follow-up replies don't have that preview restriction.
This is a bug with the site that has been known for years and likely won't get fixed.
Note the reference to winver.h. |
Yes, the function is declared in
<winver.h>. Read the Requirements at the bottom of the page and you'll see this:
Header winver.h (include Windows.h) |
With the WinAPI always check if a particular header is included in
<windows.h>.
<windows.h> is kinda like the WinAPI version of C++23's
import std;
. One header/module to bring all the other headers/modules together and in the darkness bind them.
+-----+
There's a number of GUI libraries available, as you know. There's the ol' Windows-only WinAPI. Cross-platform there are quite a number. wxWidget is one, ImGUI is another. Saint Bjarne Stroustrup in his college course (and C++ book) uses FLTK.
+-----+
I haven't really played around much with GUI/Image libraries other than the Desktop WinAPI. Maybe I should set aside some time to dink around. Chances are I'd use the SDL2/OpenGL backend combo for cross-platform applicability even though I don't do any cross-platform coding.