Alex,
I tried 6.30. It says it doesn't instrument the delayed imports indeed. There's still one that causes a crash though: adding the small unit below will cause the program to crash in AQTime, even though AQTime says it didn't instrument IsThemeActive. I guess the interesting part is that the function is called in the unit initialization section.
Giel
---------------------------------------
unit crash;
interface
uses Windows;
implementation
function IsThemeActive: bool; external 'uxtheme.dll' name 'IsThemeActive' delayed;
begin
IsThemeActive;
end.