Skip to content

Latest commit

 

History

History
97 lines (72 loc) · 3.79 KB

nf-setupapi-setupremovefilelogentrya.md

File metadata and controls

97 lines (72 loc) · 3.79 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
NF:setupapi.SetupRemoveFileLogEntryA
SetupRemoveFileLogEntryA function (setupapi.h)
The SetupRemoveFileLogEntry function removes an entry or section from a file log. (ANSI)
SetupRemoveFileLogEntryA
setupapi/SetupRemoveFileLogEntryA
setup\setupremovefilelogentry.htm
setup
a26d2c24-7092-40b0-9ae9-e7edf68aeb3d
12/05/2018
SetupRemoveFileLogEntry, SetupRemoveFileLogEntry function [Setup API], SetupRemoveFileLogEntryA, SetupRemoveFileLogEntryW, _setupapi_setupremovefilelogentry, setup.setupremovefilelogentry, setupapi/SetupRemoveFileLogEntry, setupapi/SetupRemoveFileLogEntryA, setupapi/SetupRemoveFileLogEntryW
setupapi.h
Windows
Windows XP [desktop apps only]
Windows Server 2003 [desktop apps only]
SetupRemoveFileLogEntryW (Unicode) and SetupRemoveFileLogEntryA (ANSI)
Setupapi.lib
Setupapi.dll
Windows
19H1
SetupRemoveFileLogEntryA
setupapi/SetupRemoveFileLogEntryA
c++
APIRef
kbSyntax
DllExport
Setupapi.dll
SetupRemoveFileLogEntry
SetupRemoveFileLogEntryA
SetupRemoveFileLogEntryW

SetupRemoveFileLogEntryA function

-description

[This function is available for use in the operating systems indicated in the Requirements section. It may be altered or unavailable in subsequent versions. SetupAPI should no longer be used for installing applications. Instead, use the Windows Installer for developing application installers. SetupAPI continues to be used for installing device drivers.]

The SetupRemoveFileLogEntry function removes an entry or section from a file log.

-parameters

-param FileLogHandle [in]

Handle to the file log as returned by SetupInitializeFileLog. The caller must not have passed SPFILELOG_QUERYONLY when the log file was initialized.

-param LogSectionName [in]

Pointer to a null-terminated string that specifies the name for a logical grouping of names within the log file. Required for non-system logs. Otherwise, LogSectionName may be NULL.

-param TargetFilename [in]

Pointer to a null-terminated string that specifies the name of the file as it exists on the target. This name should be in whatever format is meaningful to the caller. If NULL, the section specified by LogSectionName is removed. The main section cannot be removed.

-returns

If the function succeeds, the return value is a nonzero value.

If the function fails, the return value is zero. To get extended error information, call GetLastError.

-see-also

Functions

Overview

SetupLogFile

-remarks

Note

The setupapi.h header defines SetupRemoveFileLogEntry 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.