Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
php /
include /
ext /
gd /
libgd /
Delete
Unzip
Name
Size
Permission
Date
Action
bmp.h
2.39
KB
-rw-rw-rw-
2024-07-02 16:10
gd.h
33.76
KB
-rw-rw-rw-
2024-07-02 16:10
gd_errors.h
673
B
-rw-rw-rw-
2024-07-02 16:10
gd_intern.h
348
B
-rw-rw-rw-
2024-07-02 16:10
gd_io.h
1.05
KB
-rw-rw-rw-
2024-07-02 16:10
gd_tga.h
1.66
KB
-rw-rw-rw-
2024-07-02 16:10
gdcache.h
2.68
KB
-rw-rw-rw-
2024-07-02 16:10
gdfontg.h
529
B
-rw-rw-rw-
2024-07-02 16:10
gdfontl.h
527
B
-rw-rw-rw-
2024-07-02 16:10
gdfontmb.h
495
B
-rw-rw-rw-
2024-07-02 16:10
gdfonts.h
491
B
-rw-rw-rw-
2024-07-02 16:10
gdfontt.h
522
B
-rw-rw-rw-
2024-07-02 16:10
gdhelpers.h
1.54
KB
-rw-rw-rw-
2024-07-02 16:10
jisx0208.h
69.68
KB
-rw-rw-rw-
2024-07-02 16:10
wbmp.h
1.25
KB
-rw-rw-rw-
2024-07-02 16:10
Save
Rename
#ifndef GD_IO_H #define GD_IO_H 1 #include <stdio.h> #ifdef VMS #define Putchar gdPutchar #endif typedef struct gdIOCtx { int (*getC)(struct gdIOCtx*); int (*getBuf)(struct gdIOCtx*, void*, int); void (*putC)(struct gdIOCtx*, int); int (*putBuf)(struct gdIOCtx*, const void*, int); int (*seek)(struct gdIOCtx*, const int); long (*tell)(struct gdIOCtx*); void (*gd_free)(struct gdIOCtx*); void *data; } gdIOCtx; typedef struct gdIOCtx *gdIOCtxPtr; void Putword(int w, gdIOCtx *ctx); void Putchar(int c, gdIOCtx *ctx); void gdPutC(const unsigned char c, gdIOCtx *ctx); int gdPutBuf(const void *, int, gdIOCtx*); void gdPutWord(int w, gdIOCtx *ctx); void gdPutInt(int w, gdIOCtx *ctx); int gdGetC(gdIOCtx *ctx); int gdGetBuf(void *, int, gdIOCtx*); int gdGetByte(int *result, gdIOCtx *ctx); int gdGetWord(int *result, gdIOCtx *ctx); int gdGetWordLSB(signed short int *result, gdIOCtx *ctx); int gdGetInt(int *result, gdIOCtx *ctx); int gdGetIntLSB(signed int *result, gdIOCtx *ctx); int gdSeek(gdIOCtx *ctx, const int); long gdTell(gdIOCtx *ctx); #endif