Support::CreateLogger method

Retrieves an instance of the Logging interface.

Syntax

virtual HRESULT CreateLogger(
  [out] Logging **log
) = 0;

Parameters

log [out]

A double pointer to receive the Logging interface.

Return value

If the function succeeds, the return value is S_OK.

If log is NULL, the return value is E_POINTER.

Remarks

This method creates an instance of the Logging interface. When the assessment is finished with the object, the assessment is responsible for calling Release on the interface.

Managed code uses the Support.CreateLogger method.

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]
Header
AxeRuntime.h
DLL
AxeCore.dll

See also

Support