WIAS_LTRACE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wiamdef.h

void WIAS_LTRACE(
  pILog,
  ResID,
  Detail,
  Args
);
View the official Windows Driver Kit DDI reference
// wiautil.h

void WIAS_LTRACE(
  x,
  y,
  z,
  params
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wiamdef-wias_ltrace)

WIAS_LTRACE macro (wiamdef.h)

Description

The WIAS_LTRACE macro is obsolete. It is recommended that the WIAS_TRACE macro be used instead.

The WIAS_LTRACE macro writes a diagnostic WIA_TRACE message to the log file.

Parameters

pILog

ResID

Detail

Args

Remarks

The following is an example of how the macro can be used:

WIAS_LTRACE(g_pIWiaLog, WIALOG_NO_RESOURCE_ID, WIALOG_LEVEL2,
  ("MyClass::MyMethod, This is my text and my lValue = %d", lValue));

The WIAS_LTRACE macro obsolete and is not recommended for use because it does not record its output to the Wiatrace.log diagnostic Log file. It is recommended that the WIAS_TRACE macro be used instead.

See also

WIAS_LERROR

WIAS_LHRESULT

WIAS_LWARNING

WIAS_TRACE


Windows Driver Kit DDI reference (nf-wiautil-wias_ltrace)

WIAS_LTRACE macro (wiautil.h)

Description

The WIAS_LTRACE macro is obsolete. It is recommended that the WIAS_TRACE macro be used instead.

The WIAS_LTRACE macro writes a diagnostic WIA_TRACE message to the log file.

Parameters

x

y

z

params

Remarks

The following is an example of how the macro can be used:

WIAS_LTRACE(g_pIWiaLog, WIALOG_NO_RESOURCE_ID, WIALOG_LEVEL2,
  ("MyClass::MyMethod, This is my text and my lValue = %d", lValue));

Use of the WIAS_LTRACE macro is not recommended because it does not record its output to the Wiatrace.log diagnostic log file. It is recommended that the WIAS_TRACE macro be used instead.

See also

WIAS_LERROR

WIAS_LHRESULT

WIAS_LWARNING

WIAS_TRACE