As for what it means, I'm not sure, but here's my guess.
The optimizer renames your functions essentially at random, usually to the shortest possible names unless you chose otherwise. Anyway, Warcraft has some names reserved for the built in functions. In order to find out what the reserved names are, the optimizer needs to be able to see the common.j and blizzard.j files, which contain the declarations.
Basically, it is warning you that without access to those files, it might accidental rename one of your functions to a name that is already taken by a built in function, which would be a Bad Thing. |