NAME
YaraFFI::Record::YR_META - FFI Record for YARA metadata structure
VERSION
Version 0.06
SYNOPSIS
use YaraFFI::Record::YR_META;
use FFI::Platypus;
my $ffi = FFI::Platypus->new(api => 2);
# In a YARA callback, cast metadata pointer to record
my $meta = $ffi->cast('opaque', 'record(YaraFFI::Record::YR_META)*', $meta_ptr);
# Access fields safely
my $type = $meta->type;
my $id_ptr = $meta->identifier;
DESCRIPTION
Represents the YR_META structure from YARA's libyara. This allows safe access to rule metadata through FFI::Platypus records.