Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python35 /
include /
python3.5m /
Imaging /
Delete
Unzip
Name
Size
Permission
Date
Action
Bit.h
541
B
-rw-r--r--
2020-05-26 07:49
Gif.h
2.49
KB
-rw-r--r--
2020-05-26 07:49
ImDib.h
1.15
KB
-rw-r--r--
2020-05-26 07:49
ImPlatform.h
1.53
KB
-rw-r--r--
2020-05-26 07:49
Imaging.h
19.49
KB
-rw-r--r--
2020-05-26 07:49
Jpeg.h
2.22
KB
-rw-r--r--
2020-05-26 07:49
Jpeg2K.h
2.35
KB
-rw-r--r--
2020-05-26 07:49
Lzw.h
834
B
-rw-r--r--
2020-05-26 07:49
QuantHash.h
2.15
KB
-rw-r--r--
2020-05-26 07:49
QuantHeap.h
603
B
-rw-r--r--
2020-05-26 07:49
QuantOctree.h
238
B
-rw-r--r--
2020-05-26 07:49
QuantPngQuant.h
212
B
-rw-r--r--
2020-05-26 07:49
QuantTypes.h
509
B
-rw-r--r--
2020-05-26 07:49
Raw.h
224
B
-rw-r--r--
2020-05-26 07:49
TiffDecode.h
1.32
KB
-rw-r--r--
2020-05-26 07:49
Zip.h
1.36
KB
-rw-r--r--
2020-05-26 07:49
Save
Rename
/* * The Python Imaging Library * $Id$ * * platform declarations for the imaging core library * * Copyright (c) Fredrik Lundh 1995-2003. */ #include "Python.h" /* Check that we have an ANSI compliant compiler */ #ifndef HAVE_PROTOTYPES #error Sorry, this library requires support for ANSI prototypes. #endif #ifndef STDC_HEADERS #error Sorry, this library requires ANSI header files. #endif #if defined(PIL_NO_INLINE) #define inline #else #if defined(_MSC_VER) && !defined(__GNUC__) #define inline __inline #endif #endif #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include <Windows.h> #else /* For System that are not Windows, we'll need to define these. */ #if SIZEOF_SHORT == 2 #define INT16 short #elif SIZEOF_INT == 2 #define INT16 int #else #define INT16 short /* most things works just fine anyway... */ #endif #if SIZEOF_SHORT == 4 #define INT32 short #elif SIZEOF_INT == 4 #define INT32 int #elif SIZEOF_LONG == 4 #define INT32 long #else #error Cannot find required 32-bit integer type #endif #if SIZEOF_LONG == 8 #define INT64 long #elif SIZEOF_LONG_LONG == 8 #define INT64 long #endif #define INT8 signed char #define UINT8 unsigned char #define UINT16 unsigned INT16 #define UINT32 unsigned INT32 #endif /* assume IEEE; tweak if necessary (patches are welcome) */ #define FLOAT32 float #define FLOAT64 double #ifdef _MSC_VER typedef signed __int64 int64_t; #endif #ifdef __GNUC__ #define GCC_VERSION (__GNUC__ * 10000 \ + __GNUC_MINOR__ * 100 \ + __GNUC_PATCHLEVEL__) #endif