|
|
|
|
|
by raverbashing
408 days ago
|
|
I agree with most of this, but let's be honest, win32 gui programming (like this) is/was a pain Even MFC barely took the edge out. It's amazing how much better Borland built their "Delphi like" C++ library. > Instead of memset() you've got ZeroMemory(), instead of memcpy() you've got CopyMemory(). Yes. And your best API for opening (anything but files but maybe files as well) is... CreateFile Aah the memories :) |
|
As I recall, it wasn't "Delphi like", but rather literally the same VCL that Delphi used. That's why C++Builder had all those language extensions - they mapped 1:1 to the corresponding Delphi language features so that you could take any random Delphi unit (like VCL) and just use it from C++. In fact, C++Builder could even compile Delphi source code.