1package FFI::Platypus::Internal;
2
3use strict;
4use warnings;
5use 5.008004;
6use FFI::Platypus;
7use Exporter qw( import );
8
9require FFI::Platypus;
10_init();
11
12our @EXPORT = grep /^FFI_PL/, keys %FFI::Platypus::Internal::;
13
14# ABSTRACT: For internal use only
15our $VERSION = '1.56'; # VERSION
16
17
181;
19
20__END__
21
22=pod
23
24=encoding UTF-8
25
26=head1 NAME
27
28FFI::Platypus::Internal - For internal use only
29
30=head1 VERSION
31
32version 1.56
33
34=head1 SYNOPSIS
35
36 perldoc FFI::Platypus
37
38=head1 DESCRIPTION
39
40This module is for internal use only.  Do not rely on it having any particular behavior, or even existing in future versions.
41You have been warned.
42
43=head1 AUTHOR
44
45Author: Graham Ollis E<lt>plicease@cpan.orgE<gt>
46
47Contributors:
48
49Bakkiaraj Murugesan (bakkiaraj)
50
51Dylan Cali (calid)
52
53pipcet
54
55Zaki Mughal (zmughal)
56
57Fitz Elliott (felliott)
58
59Vickenty Fesunov (vyf)
60
61Gregor Herrmann (gregoa)
62
63Shlomi Fish (shlomif)
64
65Damyan Ivanov
66
67Ilya Pavlov (Ilya33)
68
69Petr Písař (ppisar)
70
71Mohammad S Anwar (MANWAR)
72
73Håkon Hægland (hakonhagland, HAKONH)
74
75Meredith (merrilymeredith, MHOWARD)
76
77Diab Jerius (DJERIUS)
78
79Eric Brine (IKEGAMI)
80
81szTheory
82
83José Joaquín Atria (JJATRIA)
84
85Pete Houston (openstrike, HOUSTON)
86
87=head1 COPYRIGHT AND LICENSE
88
89This software is copyright (c) 2015,2016,2017,2018,2019,2020 by Graham Ollis.
90
91This is free software; you can redistribute it and/or modify it under
92the same terms as the Perl 5 programming language system itself.
93
94=cut
95