IActiveScriptStats::GetStatEx

Returns a custom script statistic.

Syntax

HRESULT GetStatEx(  
   REFGUID  guid,  
   ULONG*   pluHi,  
   ULONG*   pluLo  
);  

Parameters

guid
[in] Specifies which statistic to return. The semantics of which statistic corresponds to a particular GUID is entirely engine defined.

pluHi
[out] The high 32 bits of a 64-bit unsigned integer representing the statistic.

pluLo
[out] The low 32 bits of a 64-bit unsigned integer representing the statistic.

Return Value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Value Description
S_OK The method succeeded.
E_NOTIMPL The method is not implemented.

Remarks

This method allows a custom script engine to return statistics meaningful to a custom host.

Note

This method is not currently implemented.

See also

IActiveScriptStats::GetStat
IActiveScriptStats Interface