Codebase list libffi-platypus-perl / 7459486
update code in some places where api => 2 should be used Graham Ollis authored 1 year, 6 months ago Graham✈️✈️ committed 1 year, 6 months ago
4 changed file(s) with 5 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
10661066 use FFI::Platypus 2.00;
10671067
10681068 my $ffi = FFI::Platypus->new(
1069 api => 1,
1069 api => 2,
10701070 lib => './swap.so',
10711071 );
10721072
12831283 use FFI::Platypus 2.00;
12841284
12851285 my $ffi = FFI::Platypus->new(
1286 api => 1,
1286 api => 2,
12871287 lib => './array_reverse.so',
12881288 );
12891289
22 use FFI::Platypus 2.00;
33
44 my $ffi = FFI::Platypus->new(
5 api => 1,
5 api => 2,
66 lib => './array_reverse.so',
77 );
88
22 use FFI::Platypus 2.00;
33
44 my $ffi = FFI::Platypus->new(
5 api => 1,
5 api => 2,
66 lib => './swap.so',
77 );
88
6161
6262 =head1 DESCRIPTION
6363
64 B<Note>: This document assumes that you are using C<api =E<gt> 1>,
64 B<Note>: This document assumes that you are using C<api =E<gt> 2>,
6565 which you should be using for all new code.
6666
6767 This document describes how to define types using L<FFI::Platypus>.