VfUtilEqualUnicodeString

UINT64 __fastcall VfUtilEqualUnicodeString(const _UNICODE_STRING *String1, const _UNICODE_STRING *String2){
  return String1->Length == String2->Length
      && RtlCompareMemory(String1->Buffer, String2->Buffer, String1->Length) == String1->Length;
}

Referenced by:

ViDifCheckCallbackInterception
ViFaultsIsAppTarget