NT4/private/ntos/ke/ppc/vdm.c
2020-09-30 17:12:29 +02:00

55 lines
553 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
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;
}