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.

31 lines
370 B

  1. /* cmdexit.c - Exit related SVC routines
  2. *
  3. * cmdExit
  4. *
  5. * Modification History:
  6. *
  7. * Sudeepb 05-Jul-1991 Created
  8. */
  9. #include "cmd.h"
  10. #include <cmdsvc.h>
  11. #include <softpc.h>
  12. #include <winbase.h>
  13. /* cmdExitVDM - Terminate the VDM
  14. *
  15. *
  16. * Entry - None
  17. *
  18. * Exit - None
  19. *
  20. *
  21. *
  22. */
  23. VOID cmdExitVDM (VOID)
  24. {
  25. // Kill the VDM process
  26. TerminateVDM();
  27. }