windows-nt/Source/XPSP1/NT/base/ntsetup/oempre/eventclear/eventclear.c
2020-09-26 16:20:57 +08:00

36 lines
671 B
C

#include <windows.h>
#include <stdio.h>
int WINAPI
WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow
)
{
HANDLE hEventLog;
hEventLog = OpenEventLog( NULL, "System" );
if (hEventLog) {
ClearEventLog( hEventLog, NULL );
CloseEventLog( hEventLog );
}
hEventLog = OpenEventLog( NULL, "Application" );
if (hEventLog) {
ClearEventLog( hEventLog, NULL );
CloseEventLog( hEventLog );
}
hEventLog = OpenEventLog( NULL, "Security" );
if (hEventLog) {
ClearEventLog( hEventLog, NULL );
CloseEventLog( hEventLog );
}
return 0;
}