Sometimes it is needed to understand compilation platform during compile or acting and designing UI elements in accordance with the platform. In this post we would like to give some examples to check some options in application codes. The C++ compiler predefines certain global identifiers, known as manifest constants. Most global identifiers begin and end with __ (two underscores) in C++.
If you are looking to a way to reliably determine whether C++ code is being compiled in 32 bits or 64 bits there is way to check in C++ code.
For a cross platform compilation (cross compiler environments like FireMonkey framework in C++ Builder) there is no single…
Easily Play Sounds In Modern C++ On Windows With This Snippets
January 21, 2021
Sounds are one of the important part of applications. Basically playing sound is sending signals to audio device / audio card of your computer to generate sounds in its voltage and frequency.
In C++ Builder, simply if you want to warn for something beginning or done we…
Quickly Learn To Draw Powerful Mathematical Functions Dynamically in Modern C++ on Windows
January 17, 2021
Most of engineering applications needs to display data in part of time or in real time. There are many ways to draw mathematical functions or data series. There are also components which makes easy to display, zoom, arrange, save or load data. In this post we will explain what is the best way to draw mathematical functions.Modern way to display drawings in C++ is using these Bitmaps. Bitmaps has…