mirror of https://github.com/tongzx/nt5src
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
31 lines
779 B
/****************************************************************************
|
|
|
|
PROGRAM: KillWOW.c
|
|
|
|
PURPOSE: KillWOW Close WOW
|
|
|
|
COMMENTS:
|
|
This app will NUKE WOW if it is able to run
|
|
|
|
|
|
****************************************************************************/
|
|
|
|
#include <windows.h> /* required for all Windows applications */
|
|
|
|
HANDLE hInst; /* current instance */
|
|
|
|
/****************************************************************************
|
|
|
|
FUNCTION: WinMain(HANDLE, HANDLE, LPSTR, int)
|
|
|
|
PURPOSE: calls initialization function, processes message loop
|
|
|
|
COMMENTS:
|
|
|
|
|
|
****************************************************************************/
|
|
|
|
int PASCAL WinMain(HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
|
|
{
|
|
ExitKernelThunk(0);
|
|
}
|