Menu

Retrieves the stop code that is associated with the stop.

Copy Code
HRESULT 
    get_StopCode
   (
    LONG*  
    plStopCode
  
);

Parameters

plStopCode

[out] Points to the stop code for the verifier stop.

Return Value

The following list includes the most like return values. However, other return values are possible.

S_OK

The method succeeded.

E_POINTER

Pointer is invalid.

Remarks

The stop code uniquely identifies the stop for a check. Stop codes should be unique across all checks, but their uniqueness is not guaranteed.

The IAppVerifierStop interface is for metadata only and does not indicate the stop code for any particular image. To check the stop code for a particular image, use the IAppVerifierImageStop interface that is associated with the image.

See Also