mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
537 B
54 lines
537 B
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
VDM.C
|
|
|
|
Abstract:
|
|
|
|
This routine has a stub for the x86 only api NtStartVdmExecution.
|
|
|
|
Author:
|
|
|
|
Dave Hastings (daveh) 2 Apr 1991
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "ki.h"
|
|
|
|
|
|
|
|
NTSTATUS
|
|
NtInitializeVDM(
|
|
VOID
|
|
)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
NTSTATUS
|
|
NtVdmStartExecution (
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
This routine returns STATUS_NOT_IMPLEMENTED
|
|
|
|
Arguments:
|
|
|
|
Return Value:
|
|
|
|
STATUS_NOT_IMPLEMENTED
|
|
--*/
|
|
{
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|