In the DSS API documentation, I came across the following statement, saying that, "Types (structs, classes, etc.) are valid symbols - but have no address on the target". It is a bit confusing, and I wonder, if there is another way to get the address of a class, or a structure in a local function in run-time environment.
Br,
ApplatCat,
public long getAddress(java.lang.String sSymbol) throws ScriptingException
sSymbol
ScriptingException
I presume it means "types" as in the symbols defined with a typedef - which clearly have no address on the target.
It doesn't get an address until you create a variable of that type; ie, until you "instantiate" it, in OO-speak.