It might be worth trying to link the scintilla DLL with /DELAYLOAD:KERNEL32.DLL and see if this fixes it (I can't remember whether delay-load loads all imports from a DLL once a single import is necessary, or if it loads all imports lazily).
An alternative would be hunting down the IsDebuggerPresent call in the CRT and building a version that doesn't include it - VS2005 comes with the CRT source code. The last fix would be hexediting the name to some other innocent no-parameter function in kernel32... the function only seems to be called if there's an exception anyway. -- Best regards, Sune Marcher <[EMAIL PROTECTED]> _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
