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

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

Looking to build multi-device apps? We have code snippets to get you started

Author: Alan J64141 With RAD Studio, you can build multi-device applications from a single codebase. If you’re just starting with mobile application development using the FireMonkey framework, we have great code snippets to help you get started. Location Sensor This code snippet shows you how to use the TLocationSensor component in order to read the GPS location of the device and display…
Read more
Delphi

Eight 3D Demos Featuring Volume Rendering, Textures, Shaders, Materials, Polygons, And Models In Delphi FireMonkey

Author: Yogi Yang 007 Developer luxidea over on the LUXOPHIA GitHub account has quite a few 3D demos for Delphi FireMonkey featuring various techniques includingVolume Rendering, Textures, Shaders, Materials, Polygons, Models, and more. If you are looking to work with 3D and FireMonkey this probably a pretty good place to start. The demos appear to be mainly targeted at Windows as some of…
Read more