I'm doing some date/time manipulation (shudders, thinking about Falsehoods programmers believe about time), and I want to know what basic APIs I have access to, working in modern C++/WinRT and Win32.
What types and APIs exist on the system APIs or in the standard library for date & time manipulation?
I know about a few things:
std::chrono::time_point
in C++/WinRT, but has different semantics in other languages like C++/CXPlus I have some reference guides:
But I'd love to have a complete, authoritative list.
As suggested in the comments, there is no complete list online, but the list in the question is a fair start.