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 /
typemaps /
[ HOME SHELL ]
Name
Size
Permission
Action
attribute.swg
9.42
KB
-rw-r--r--
carrays.swg
2.79
KB
-rw-r--r--
cdata.swg
1.88
KB
-rw-r--r--
cmalloc.swg
2.54
KB
-rw-r--r--
cpointer.swg
3.35
KB
-rw-r--r--
cstring.swg
167
B
-rw-r--r--
cstrings.swg
8.19
KB
-rw-r--r--
cwstring.swg
207
B
-rw-r--r--
enumint.swg
906
B
-rw-r--r--
exception.swg
2.8
KB
-rw-r--r--
factory.swg
2.38
KB
-rw-r--r--
fragments.swg
13
KB
-rw-r--r--
implicit.swg
4.71
KB
-rw-r--r--
inoutlist.swg
9.26
KB
-rw-r--r--
misctypes.swg
467
B
-rw-r--r--
primtypes.swg
8.38
KB
-rw-r--r--
ptrtypes.swg
6.59
KB
-rw-r--r--
std_except.swg
2.13
KB
-rw-r--r--
std_string.swg
350
B
-rw-r--r--
std_strings.swg
2.01
KB
-rw-r--r--
std_wstring.swg
395
B
-rw-r--r--
string.swg
547
B
-rw-r--r--
strings.swg
16.57
KB
-rw-r--r--
swigmacros.swg
7.94
KB
-rw-r--r--
swigobject.swg
898
B
-rw-r--r--
swigtype.swg
18.69
KB
-rw-r--r--
swigtypemaps.swg
5.03
KB
-rw-r--r--
traits.swg
7.37
KB
-rw-r--r--
typemaps.swg
4.62
KB
-rw-r--r--
valtypes.swg
7
KB
-rw-r--r--
void.swg
2.03
KB
-rw-r--r--
wstring.swg
567
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : traits.swg
// // Use the following macro with modern STL implementations // //#define SWIG_STD_MODERN_STL // // Use this to deactive the previous definition, when using gcc-2.95 // or similar old compilers. // //#define SWIG_STD_NOMODERN_STL // Here, we identify compilers we now have problems with STL. %{ #if defined(__GNUC__) # if __GNUC__ == 2 && __GNUC_MINOR <= 96 # define SWIG_STD_NOMODERN_STL # endif #endif %} // // Common code for supporting the STD C++ namespace // %{ #include <string> #include <stdexcept> %} %fragment("Traits","header") { namespace swig { /* type categories */ struct pointer_category { }; struct value_category { }; /* General traits that provides type_name and type_info */ template <class Type> struct traits { }; template <class Type> inline const char* type_name() { return traits<Type>::type_name(); } template <class Type> struct traits_info { static swig_type_info *type_query(std::string name) { name += " *"; return SWIG_TypeQuery(name.c_str()); } static swig_type_info *type_info() { static swig_type_info *info = type_query(type_name<Type>()); return info; } }; template <class Type> inline swig_type_info *type_info() { return traits_info<Type>::type_info(); } /* Partial specialization for pointers */ template <class Type> struct traits <Type *> { typedef pointer_category category; static std::string make_ptr_name(const char* name) { std::string ptrname = name; ptrname += " *"; return ptrname; } static const char* type_name() { static std::string name = make_ptr_name(swig::type_name<Type>()); return name.c_str(); } }; template <class Type, class Category = typename traits<Type>::category > struct traits_check { }; /* Traits that provides the from method for an unknown type */ template <int flags, class Type> struct traits_from_ptr { static SWIG_Object from SWIG_FROM_DECL_ARGS(Type *val) { return SWIG_NewPointerObj(val, type_info<Type>(), flags); } }; template <class Type> struct traits_from { static SWIG_Object from SWIG_FROM_DECL_ARGS(const Type& val) { return traits_from_ptr<SWIG_POINTER_OWN, Type>::from(new Type(val)); } }; template <class Type> struct traits_from<Type *> { static SWIG_Object from SWIG_FROM_DECL_ARGS(Type* val) { return traits_from_ptr<0, Type>::from(val); } }; template <class Type> inline SWIG_Object from SWIG_FROM_DECL_ARGS(const Type& val) { return traits_from<Type>::from(val); } /* Traits that provides the asptr/asval method for an unknown type */ template <class Type> struct traits_asptr { static int asptr SWIG_AS_DECL_ARGS (SWIG_Object obj, Type **val) { Type *p; int res = SWIG_ConvertPtr(obj, %as_voidptrptr(&p), type_info<Type>(), 0); if (SWIG_IsOK(res) && val) *val = p; return res; } }; template <class Type> inline int asptr SWIG_AS_DECL_ARGS(SWIG_Object obj, Type **vptr) { return traits_asptr<Type>::asptr SWIG_AS_CALL_ARGS(obj, vptr); } template <class Type> struct traits_asval { static int asval SWIG_AS_DECL_ARGS(SWIG_Object obj, Type *val) { if (val) { Type *p = 0; int res = traits_asptr<Type>::asptr SWIG_AS_CALL_ARGS(obj, &p); if (SWIG_IsOK(res) && p) { *val = *p; if (SWIG_IsNewObj(res)) { %delete(p); res = SWIG_DelNewMask(res); } } return res; } else { return traits_asptr<Type>::asptr SWIG_AS_CALL_ARGS(obj, (Type **)(0)); } } }; template <class Type> inline int asval SWIG_AS_DECL_ARGS (SWIG_Object obj, Type *val) { return traits_asval<Type>::asval SWIG_AS_CALL_ARGS(obj, val); } /* Traits that provides the check method for an unknown type */ #define SWIG_CHECK_DECL_ARGS(obj) SWIG_AS_DECL_ARGS(obj, void * = 0) #define SWIG_CHECK_CALL_ARGS(obj) SWIG_AS_CALL_ARGS(obj, 0) template <class Type> struct traits_checkval { static int check SWIG_CHECK_DECL_ARGS(SWIG_Object obj) { if (obj) { int res = asval SWIG_AS_CALL_ARGS(obj, (Type *)(0)); return SWIG_CheckState(res); } else { return 0; } } }; template <class Type> struct traits_checkptr { static int check SWIG_CHECK_DECL_ARGS(SWIG_Object obj) { if (obj) { int res = asptr SWIG_AS_CALL_ARGS(obj, (Type **)(0)); return SWIG_CheckState(res); } else { return 0; } } }; template <class Type> struct traits_check<Type, value_category> : traits_checkval<Type> { }; template <class Type> struct traits_check<Type, pointer_category> : traits_checkptr<Type> { }; template <class Type> inline int check SWIG_CHECK_DECL_ARGS(SWIG_Object obj) { return traits_check<Type>::check SWIG_CHECK_CALL_ARGS(obj); } } } /* Generate the traits for an unknown SWIGTYPE */ %define %traits_swigtype(Type...) %fragment(SWIG_Traits_frag(Type),"header",fragment="Traits") { namespace swig { template <> struct traits<Type > { typedef pointer_category category; static const char* type_name() { return #Type; } }; } } %enddef /* Generate the traits for a 'value' type, such as 'double', for which the SWIG_AsVal and SWIG_From methods are already defined. */ %define %traits_value(Type...) %fragment(SWIG_Traits_frag(Type),"header", fragment=SWIG_AsVal_frag(Type), fragment=SWIG_From_frag(Type), fragment="Traits") { namespace swig { template <> struct traits<Type > { typedef value_category category; static const char* type_name() { return #Type; } }; template <> struct traits_asval<Type > { typedef Type value_type; static int asval SWIG_AS_DECL_ARGS (SWIG_Object obj, value_type *val) { return SWIG_AsVal(Type)(obj, val); } }; template <> struct traits_from<Type > { typedef Type value_type; static SWIG_Object from SWIG_FROM_DECL_ARGS (const value_type& val) { return SWIG_From(Type)(val); } }; } } %enddef /* Generate the traits for a 'pointer' type, such as 'std::string', for which the SWIG_AsPtr and SWIG_From methods are already defined. */ %define %traits_pointer(Type...) %fragment(SWIG_Traits_frag(Type),"header", fragment=SWIG_AsVal_frag(Type), fragment=SWIG_From_frag(Type), fragment="Traits") { namespace swig { template <> struct traits<Type > { typedef pointer_category category; static const char* type_name() { return #Type; } }; template <> struct traits_asptr<Type > { typedef Type value_type; static int asptr SWIG_AS_DECL_ARGS (SWIG_Object obj, value_type **val) { return SWIG_AsPtr(Type)(obj, val); } }; template <> struct traits_from<Type > { typedef Type value_type; static SWIG_Object from SWIG_FROM_DECL_ARGS (const value_type& val) { return SWIG_From(Type)(val); } }; } } %enddef /* Generate the typemaps for a class that has 'value' traits */ %define %typemap_traits_value(Code,Type...) %typemaps_asvalfrom(%arg(Code), %arg(swig::asval), %arg(swig::from), %arg(SWIG_Traits_frag(Type)), %arg(SWIG_Traits_frag(Type)), Type); %enddef /* Generate the typemaps for a class that has 'pointer' traits */ %define %typemap_traits_pointer(Code,Type...) %typemaps_asptrfrom(%arg(Code), %arg(swig::asptr), %arg(swig::from), %arg(SWIG_Traits_frag(Type)), %arg(SWIG_Traits_frag(Type)), Type); %enddef
Close