pSetupVerifyCatalogFile function

[This function is no longer supported by Microsoft. For an INF file (device install), developers should use SetupVerifyInfFile. To validate a non-INF based catalog, use WinVerifyTrust.]

Verifies a single catalog file using standard operating system code signing policy, such as driver signing.

Syntax

DWORD pSetupVerifyCatalogFile(
  _In_ LPCTSTR CatalogFullPath
);

Parameters

CatalogFullPath [in]

The fully qualified path of the catalog file to be verified.

Return value

If the function succeeds, it returns ERROR_SUCCESS; otherwise, it returns the error from WinVerifyTrust.

Remarks

This function has no associated import library or header file; you must call it using the LoadLibrary and GetProcAddress functions.

Requirements

Requirement Value
DLL
Setupapi.dll

See also

SetupVerifyInfFile

WinVerifyTrust