EvtGetQueryInfo function wevtapi
Gets information about a query that you ran that identifies the list of channels or log files that the query attempted to access.
BOOL EvtGetQueryInfo(
[in] EVT_HANDLE QueryOrSubscription,
[in] EVT_QUERY_PROPERTY_ID PropertyId,
[in] DWORD PropertyValueBufferSize,
[in] PEVT_VARIANT PropertyValueBuffer,
[out] PDWORD PropertyValueBufferUsed
);
Implementation
int EvtGetQueryInfo(
int QueryOrSubscription,
int PropertyId,
int PropertyValueBufferSize,
Pointer<EVT_VARIANT> PropertyValueBuffer,
Pointer<Uint32> PropertyValueBufferUsed,
) => _EvtGetQueryInfo(
QueryOrSubscription,
PropertyId,
PropertyValueBufferSize,
PropertyValueBuffer,
PropertyValueBufferUsed,
);