PpvUtilIsHardwareBeingVerified

UINT8 __stdcall PpvUtilIsHardwareBeingVerified(_DEVICE_OBJECT *PhysicalDeviceObject){
  _DWORD *DeviceNode; 
  int v2; 
  UINT8 result; 

  result = 0;
  if( PhysicalDeviceObject )
  {
    DeviceNode = PhysicalDeviceObject->DeviceObjectExtension->DeviceNode;
    if( DeviceNode )
    {
      v2 = DeviceNode[99];
      if( (v2 & 0x20000) == 0 && (v2 & 0x8000) != 0 )
        return 1;
    }
  }
  return result;
}

Referenced by:

VfIsVerificationEnabled