Hello,
Is there a direct way to have a global table column containing global macros to be read and interpreted as their corresponding macro values. The intent is to have the macro value assigned to an object label, reading from the table.
Example:
Let's say that MyTable[1][1] = MY_MACRO where MY_MACRO is previously defined by
#define MY_MACRO something
Then
myObject.labels["myLabel"].value = MyTable[1][1]; // receive "something", not "MY_MACRO"
I would prefer not having to create a parser function manually, if possible.
Thank you.