Skip to content

Latest commit

 

History

History
99 lines (71 loc) · 3.14 KB

nf-winbase-cleareventloga.md

File metadata and controls

99 lines (71 loc) · 3.14 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name req.apiset
NF:winbase.ClearEventLogA
ClearEventLogA function (winbase.h)
Clears the specified event log, and optionally saves the current copy of the log to a backup file. (ANSI)
ClearEventLogA
winbase/ClearEventLogA
base\cleareventlog.htm
base
b66896f6-baee-43c4-9d9b-5663c164d092
12/05/2018
ClearEventLog, ClearEventLog function, ClearEventLogA, ClearEventLogW, _win32_cleareventlog, base.cleareventlog, winbase/ClearEventLog, winbase/ClearEventLogA, winbase/ClearEventLogW
winbase.h
Windows.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
ClearEventLogW (Unicode) and ClearEventLogA (ANSI)
Advapi32.lib
Advapi32.dll
Windows
19H1
ClearEventLogA
winbase/ClearEventLogA
c++
APIRef
kbSyntax
DllExport
Advapi32.dll
Ext-Ms-Win-AdvAPI32-EventLog-Ansi-L1-1-0.dll
ClearEventLog
ClearEventLogA
ClearEventLogW
ext-ms-win-advapi32-eventlog-ansi-l1-1-0 (introduced in Windows 10, version 10.0.10240)

ClearEventLogA function

-description

Clears the specified event log, and optionally saves the current copy of the log to a backup file.

-parameters

-param hEventLog [in]

A handle to the event log to be cleared. The OpenEventLog function returns this handle.

-param lpBackupFileName [in]

The absolute or relative path of the backup file. If this file already exists, the function fails.

If the lpBackupFileName parameter is NULL, the event log is not backed up.

-returns

If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To get extended error information, call GetLastError. The ClearEventLog function can fail if the event log is empty or the backup file already exists.

-remarks

After this function returns, any handles that reference the cleared event log cannot be used to read the log.

Note

The winbase.h header defines ClearEventLog as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

-see-also

Event Logging Functions

OpenEventLog