mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[NTVDM]: Implement and export VDDTerminateVDM.
svn path=/branches/ntvdm/; revision=61374
This commit is contained in:
@@ -28,6 +28,14 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* VDM Control
|
||||
*/
|
||||
|
||||
VOID
|
||||
WINAPI
|
||||
VDDTerminateVDM(VOID);
|
||||
|
||||
/*
|
||||
* I/O Port services
|
||||
*/
|
||||
|
||||
@@ -2572,6 +2572,7 @@ VOID WINAPI DosBreakInterrupt(LPWORD Stack)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(Stack);
|
||||
|
||||
/* Stop the VDM */
|
||||
VdmRunning = FALSE;
|
||||
}
|
||||
|
||||
|
||||
@@ -181,6 +181,14 @@ VOID EmulatorSetA20(BOOLEAN Enabled)
|
||||
|
||||
|
||||
|
||||
VOID
|
||||
WINAPI
|
||||
VDDTerminateVDM(VOID)
|
||||
{
|
||||
/* Stop the VDM */
|
||||
VdmRunning = FALSE;
|
||||
}
|
||||
|
||||
PBYTE
|
||||
WINAPI
|
||||
Sim32pGetVDMPointer(IN ULONG Address,
|
||||
|
||||
@@ -185,3 +185,5 @@
|
||||
@ stdcall call_ica_hw_interrupt(long long long)
|
||||
@ stdcall VDDInstallIOHook(long long ptr ptr)
|
||||
@ stdcall VDDDeInstallIOHook(long long ptr)
|
||||
|
||||
@ stdcall VDDTerminateVDM()
|
||||
|
||||
Reference in New Issue
Block a user