Make all users of DOSVM_Enter explicitly set V86 flag.
Fix mouse relay stack usage in protected mode.
Raw mode switch now handles interrupt flag correctly.
diff --git a/dlls/winedos/dosaspi.c b/dlls/winedos/dosaspi.c
index 7ccd2b1..88ab4c6 100644
--- a/dlls/winedos/dosaspi.c
+++ b/dlls/winedos/dosaspi.c
@@ -82,6 +82,8 @@
/* Zero everything */
memset(&ctx, 0, sizeof(ctx));
+ ctx.EFlags |= V86_FLAG;
+
/* CS:IP is routine to call */
ctx.SegCs = SELECTOROF(lpSRB16->cmd.SRB_PostProc);
ctx.Eip = OFFSETOF(lpSRB16->cmd.SRB_PostProc);