Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. VDM.C
  5. Abstract:
  6. This routine has a stub for the x86 only api NtStartVdmExecution.
  7. Author:
  8. Dave Hastings (daveh) 2 Apr 1991
  9. Revision History:
  10. --*/
  11. #include "ki.h"
  12. NTSTATUS
  13. NtInitializeVDM(
  14. VOID
  15. )
  16. {
  17. return STATUS_SUCCESS;
  18. }
  19. NTSTATUS
  20. NtVdmStartExecution (
  21. )
  22. /*++
  23. Routine Description:
  24. This routine returns STATUS_NOT_IMPLEMENTED
  25. Arguments:
  26. Return Value:
  27. STATUS_NOT_IMPLEMENTED
  28. --*/
  29. {
  30. return STATUS_NOT_IMPLEMENTED;
  31. }