In C++Builder XE2 the IDE will place this line of code in the header file associated with TMyForm immediately after the TMyForm class. I'm certain this relates to the the fact that all of the properties TMyForm are defined in MyForm.dfm and need to be linked into the executable somehow, but I can't find any reference to it in the documentation or online. Googling for "extern PACKAGE" just yields a lot of code samples that contain the phrase.
Strangely, commenting it out doesn't seem to have any effect. I even deleted the .res file and did a rebuild and the form works fine without it. Which seems to negate my assumption above.