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
779 B

  1. /****************************************************************************
  2. PROGRAM: KillWOW.c
  3. PURPOSE: KillWOW Close WOW
  4. COMMENTS:
  5. This app will NUKE WOW if it is able to run
  6. ****************************************************************************/
  7. #include <windows.h> /* required for all Windows applications */
  8. HANDLE hInst; /* current instance */
  9. /****************************************************************************
  10. FUNCTION: WinMain(HANDLE, HANDLE, LPSTR, int)
  11. PURPOSE: calls initialization function, processes message loop
  12. COMMENTS:
  13. ****************************************************************************/
  14. int PASCAL WinMain(HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
  15. {
  16. ExitKernelThunk(0);
  17. }