Right, I understand that if you had an SDK function that was the equivalent of the ALIAS statement, it could not replace (or remove!) existing keywords, but only add new ones that were different spellings of existing ones. That would be enough.
I believe that, along with the existing ability to define string and numeric constants should be enough.
For constants, does the SDK require you to put the prefix character on the names? For example, the sample code has these two lines,
'thinBasic_AddEquate "%MyNumericEquate", "" , 1
'thinBasic_AddEquate "$MyStringEquate", "ABC" , 0
Is the % and $ required, or is this just a convention? If I want an equate without these, can you determine which is intended, like this?
'thinBasic_AddEquate "MyNumericEquate", "" , 1 ' a number, because "" means there is no string
'thinBasic_AddEquate "MyStringEquate", "ABC" , 0 ' a string, because "ABC" present
I haven't run across any docs or comments that explain if you could do that or not.
Bookmarks