I have project written in C language for Visual Studio 2019/2022.
Is it possible to make compile-time function renaming?
For instance, if I have the source code:
RENAME_TEST void DummyFunction()
{
...
}
In the .map
file, the function must be named like void DummyFunction_test()
.
8