Hi MrBcx,
I managed to build the project with Embarcadero’s free C++ Compiler. Some minor modifications in the source code are required for the compilation, main.cpp ( main.c ) and main.rc are modified.
Here's a trick that works for compiling with Embarcadero at the commandline.
The only file you need is main.cpp1) add the following to the end of main.cpp (right after WinMain)
int main() {
WinMain(0,0,0,0);
return 0;
}
2) c:\embarcadero\bin\bcc32 main.cpp
or
2) c:\embarcadero\bin\bcc64 main.cpp
The 32-bit compiler will throw a few warnings but
main.exe will run just fine.
The 64-bit compiler throws no warnings or errors.