PFND3DDDICB_LOGSTRINGTABLEENTRY - NtDoc

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

PFND3DDDICB_LOGSTRINGTABLEENTRY Pfnd3dddicbLogstringtableentry;

HRESULT Pfnd3dddicbLogstringtableentry(
  HANDLE hLog,
  UINT StringIndex,
  LPCWSTR Info
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dumddi-pfnd3dddicb_logstringtableentry)

PFND3DDDICB_LOGSTRINGTABLEENTRY callback function

Description

Locates a string table entry that is used by the LogMarkerStringTable function to log an Event Tracing for Windows (ETW) marker event. Optionally implemented by Windows Display Driver Model (WDDM) 1.3 and later drivers.

Parameters

hLog

A handle to the ETW log that is to be written to. Must be the same hLog handle passed to the LogMarkerStringTable function.

StringIndex

The offset, in bytes, of the string table entry pointed to by Info. Can be negative if the string is passed along with the marker event.

Info

A custom text string embedded in the ETW packet. Can be NULL.

Return value

Returns S_OK or an appropriate error result if the function does not complete successfully.

See also

LogMarkerStringTable