Remove_V86_Break_Point

include vmm.inc

mov     eax, BreakAddr        ; V86 address of break point
VMMCall Remove_V86_Break_Point
 

Removes a V86 break point that was installed using the Install_V86_Break_Point service. It restores the original contents of the memory automatically. Uses Flags.

BreakAddr
Address of the break point to remove. The address must be a segment:offset pair.

In Windows 95, removing a breakpoint does not free the resources associated with it. Thus, repeatedly installing and removing the same breakpoint will slowly leak resources.

See Also

Install_V86_Break_Point