July 22, 2006
Hello,

I want to debug a selfwritten photoshop filterplugin (which is a dll)

Apparently Photoshop's code has a lot of int 3 instructions embedded.
(I dont know why, eventually as crack protection.)

The IDE's debugger hangs at these interrupts and so my dll never gets called, when Im in debug mode.
(The problem is the same with windbg)

(The plugin loads and runs fine without debugger)

How to solve the problem?

TIA,

Peter
July 23, 2006
Peter Heckert schrieb:
> Hello,
> 
> I want to debug a selfwritten photoshop filterplugin (which is a dll)
> 
> Apparently Photoshop's code has a lot of int 3 instructions embedded.
> (I dont know why, eventually as crack protection.)
> 
> The IDE's debugger hangs at these interrupts and so my dll never gets called, when Im in debug mode.
> (The problem is the same with windbg)
> 
> (The plugin loads and runs fine without debugger)
> 
> How to solve the problem?
> 

Finally I ended up using msvc express, this worked.
I am not really happy with this solution :-\

Peter