// d3dumddi.h
PFND3DDDICB_LOGSTRINGTABLEENTRY Pfnd3dddicbLogstringtableentry;
HRESULT Pfnd3dddicbLogstringtableentry(
HANDLE hLog,
UINT StringIndex,
LPCWSTR Info
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
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.
hLogA handle to the ETW log that is to be written to. Must be the same hLog handle passed to the LogMarkerStringTable function.
StringIndexThe 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.
InfoA custom text string embedded in the ETW packet. Can be NULL.
Returns S_OK or an appropriate error result if the function does not complete successfully.