Shows how to use Win32 System api by proghramming code (c++17).
- HelloWorld The classic first application "Hello, World!" with Win32 WriteConsole function.
- Console demonstrates the use of WriteConsole and ReadConsole functions.
- ConsoleColor demonstrates the use of WriteConsole and SetConsoleTextAttribute functions.
- Process demonstrates the use of CreateProcess function.
- StringConversion demonstrates the use of std::wcstombs and std::mbstowcs functions.
To build this project, open "Console" and type following lines:
mkdir build && cd build
cmake ..
start Win32.System.sln
Select any project and type Ctrl+F5 to build and run it.