在System单元17950行中,有以下的一些代码  // High bit is set for Win95/98/ME  if GetVersion and $80000000 <> $80000000 then
//$80000000是执行的什么操作,打开的什么类型的编译器,这样的写法有没有问题?  begin    if Lo(GetVersion) > 4 then      DefaultUserCodePage := 3  // Use CP_THREAD_ACP with Win2K/XP    else      // Use thread's current locale with NT4      DefaultUserCodePage := LCIDToCodePage(GetThreadLocale);  end