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