windows-nt/Source/XPSP1/NT/base/ntos/ke/alpha/vdm.c

55 lines
537 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
/*++
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;
}