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
News

O RAD Studio 10.2 Tokyo está pronto!

Author: Alan J52653 Hoje a Embarcadero anunciou o lançamento do Delphi, C ++ Builder e RAD Studio 10.2 Tokyo. A nova versão do produto inclui o nosso novo compilador Delphi de 64 bits para Linux! Iniciamos 2017 falando sobre o novo compilador Linux no Delphi Academy, então você pode conferir todos os detalhes sobre ele através dos vídeos e exemplos disponibilizados aqui…
Read more
News

Delphi for Linux is Coming

Author: cupboy Does Linux Matter? I’m personally going to switch my current server from Windows to Linux, and save quite some money in the process, but this is what other developers told us…
News

What's New in C++Builder 10.2: Part 1 - The Linker

RAD Studio 10.2 Tokyo will be out very soon, and I’d like to let you know some of what you can expect to see new on the C++Builder side. While the majority of work is for Linux, which will be available for C++ in 10.2.1, we’ve worked on three key areas: Improved linking Improved code generation Improved debugging Today I want to discuss what’s new in the linker. The Win32…
Read more
News

Delphi for Linux RTL units

Author: Didier Cabalé I want to follow up my blog post covering the Delphi Linux compiler with a second one focused on the RTL units that are going to be available in Delphi for the Linux platform. The System Name Space These are the units part of the System name space that…