News

Using C++17 Algorithms Library Parallel Sorting with C++Builder 10.4 Sydney for Win32 and Win64

C++Builder 10.4 Sydney supports the ISO C++17 standard in the Clang based compilers for Win32 and Win64. Part of the C++17 standard includes the Algorithms library that provides execution policies to support parallel operations. Below you will find a simple VCL example that uses the C++ std::vector and the algorithms library sort and parallel execution policy to sort random integers in the…
Read more
C++

Version 10.3.2 Now Available, Learn More

We are very excited to announce the release of Delphi, C++Builder and RAD Studio 10.3.2. 10.3 Rio Release 2 (also known as 10.3.2) builds on the feature set of 10.3 and 10.3.1 by adding new capabilities throughout the product. Delphi 10.3.2, C++Builder 10.3.2 and RAD…
C++

Use the DLL created by Visual C++2017 with C++Builder(Win64).

Author: h.mohri Made a DLL with Visual C++. And I tried to use it in C++Builder. Common is 64 bits. First I will make a VC++ side DLL. //// extern "C" CONSOLEAPPLICATION1_API int test1(int i1) { ///This function only increments. ++i1; return i1; } extern "C" CONSOLEAPPLICATION1_API void test2(int i1, wchar_t* a) { ///Convert from int to wstring. std::wstring s{}; s =…
Read more