News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

remove the borland macro in our source files

Started by ollydbg, January 09, 2023, 09:05:57 AM

Previous topic - Next topic

ollydbg

Hi, I think those code snippet:


#ifdef __BORLANDC__
#pragma hdrstop
#endif


should be removed from all our source code, any ideas?

Thanks.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Miguel Gimenez

wxWidgets has removed support for Borland, so IMHO keeping it in the codebase has little sense.

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Pecan

I also agree. Time to trim the grass.
I always delete it anyway.

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.