NAME
YaraFFI::Record::YR_STRING - FFI Record for YARA string structure
VERSION
Version 0.06
SYNOPSIS
use YaraFFI::Record::YR_STRING;
# Cast string pointer to record
my $string = $ffi->cast('opaque', 'record(YaraFFI::Record::YR_STRING)*', $str_ptr);
# Access identifier
my $id_ptr = $string->identifier;
DESCRIPTION
Represents the YR_STRING structure from YARA's libyara. This is a partial definition focusing on the identifier field we need to access.