1FFI::Platypus::Lang::ASUMs(e3r)Contributed Perl DocumentFaFtIi:o:nPlatypus::Lang::ASM(3)
2
3
4
6 FFI::Platypus::Lang::ASM - Documentation and tools for using Platypus
7 with the Assembly
8
10 version 2.05
11
13 use FFI::Platypus 2.00;
14 my $ffi = FFI::Platypus->new( api => 2 );
15 $ffi->lang('ASM');
16
18 Setting your lang to "ASM" includes no native type aliases, so types
19 like "int" or "unsigned long" will not work. You need to specify
20 instead "sint32" or "sint64". Although intended for use with Assembly
21 it could also be used for other languages if you did not want to use
22 the normal C aliases for native types.
23
24 This document will one day include information on bundling Assembly
25 with your Perl / FFI / Platypus distribution. Pull requests welcome!
26
28 native_type_map
29 my $hashref = FFI::Platypus::Lang::ASM->native_type_map;
30
31 This returns an empty hash reference. For other languages it returns a
32 hash reference that defines the aliases for the types normally used for
33 that language.
34
36 FFI::Platypus
37 The Core Platypus documentation.
38
39 FFI::Platypus::Lang
40 Includes a list of other language plugins for Platypus.
41
43 Author: Graham Ollis <plicease@cpan.org>
44
45 Contributors:
46
47 Bakkiaraj Murugesan (bakkiaraj)
48
49 Dylan Cali (calid)
50
51 pipcet
52
53 Zaki Mughal (zmughal)
54
55 Fitz Elliott (felliott)
56
57 Vickenty Fesunov (vyf)
58
59 Gregor Herrmann (gregoa)
60
61 Shlomi Fish (shlomif)
62
63 Damyan Ivanov
64
65 Ilya Pavlov (Ilya33)
66
67 Petr Písař (ppisar)
68
69 Mohammad S Anwar (MANWAR)
70
71 Håkon Hægland (hakonhagland, HAKONH)
72
73 Meredith (merrilymeredith, MHOWARD)
74
75 Diab Jerius (DJERIUS)
76
77 Eric Brine (IKEGAMI)
78
79 szTheory
80
81 José Joaquín Atria (JJATRIA)
82
83 Pete Houston (openstrike, HOUSTON)
84
86 This software is copyright (c) 2015-2022 by Graham Ollis.
87
88 This is free software; you can redistribute it and/or modify it under
89 the same terms as the Perl 5 programming language system itself.
90
91
92
93perl v5.36.0 2022-11-18 FFI::Platypus::Lang::ASM(3)