|
NAMEFFI::C::Struct - Structured data instance for FFI VERSIONversion 0.15 SYNOPSIS use FFI::C::StructDef;
my $def = FFI::C::StructDef->new(
name => 'color_t',
class => 'Color',
members => [
red => 'uint8',
green => 'uint8',
blue => 'uint8',
],
);
my $red = $def->create({ red => 255 }); # creates a FFI::C::Stuct
printf "[%02x %02x %02x]\n", $red->red, $red->green, $red->blue; # [ff 00 00]
# that red is too bright!
$red->red(200);
printf "[%02x %02x %02x]\n", $red->red, $red->green, $red->blue; # [c8 00 00]
my $green = Color->new({ green => 255 }); # creates a FFI::C::Stuct
printf "[%02x %02x %02x]\n", $green->red, $green->green, $green->blue; # [00 ff 00]
DESCRIPTIONThis class represents an instance of a C "struct". This class can be created using "new" on the generated class, if that was specified for the FFI::C::StructDef, or by using the "create" method on FFI::C::StructDef. For each member defined in the FFI::C::StructDef there is an accessor for the FFI::C::Struct instance. CONSTRUCTORnewFFI::C::StructDef->new( class => 'User::Struct::Class', ... ); my $instance = User::Struct::Class->new; Creates a new instance of the "struct". SEE ALSOAUTHORGraham Ollis <plicease@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2020-2022 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|