Consider the following macroinstruction and structure defininations of the same names:
foo macro {}
foo struc {}
Well, at some later point in the code, you purge foo like this:
My question is now: Which one gets purged? the macro or structure? Is this related to the order they were defined or are structures and macros always treated appart? Or has any a higher purging-priority?
I think I read something like it depends on the order they were defined in the fasm docs. Or maybe I'm just confused.
Has anyone seen my brain today?