Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.17.142.93
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
include /
tcl8.6 /
tk-private /
generic /
[ HOME SHELL ]
Name
Size
Permission
Action
ttk
[ DIR ]
drwxr-xr-x
default.h
581
B
-rw-r--r--
ks_names.h
29.4
KB
-rw-r--r--
tk.h
56.7
KB
-rw-r--r--
tk3d.h
3.04
KB
-rw-r--r--
tkArray.h
17.98
KB
-rw-r--r--
tkBusy.h
1.58
KB
-rw-r--r--
tkButton.h
12.2
KB
-rw-r--r--
tkCanvas.h
11.22
KB
-rw-r--r--
tkColor.h
2.6
KB
-rw-r--r--
tkDList.h
16.31
KB
-rw-r--r--
tkDecls.h
74.39
KB
-rw-r--r--
tkEntry.h
10.97
KB
-rw-r--r--
tkFileFilter.h
2.51
KB
-rw-r--r--
tkFont.h
7.82
KB
-rw-r--r--
tkImgPhoto.h
8.81
KB
-rw-r--r--
tkInt.h
44.36
KB
-rw-r--r--
tkIntDecls.h
48.13
KB
-rw-r--r--
tkIntPlatDecls.h
25.2
KB
-rw-r--r--
tkIntXlibDecls.h
61.46
KB
-rw-r--r--
tkMenu.h
20.76
KB
-rw-r--r--
tkMenubutton.h
7.85
KB
-rw-r--r--
tkPlatDecls.h
5.43
KB
-rw-r--r--
tkPort.h
632
B
-rw-r--r--
tkScale.h
8.82
KB
-rw-r--r--
tkScrollbar.h
6.71
KB
-rw-r--r--
tkSelect.h
6.61
KB
-rw-r--r--
tkText.h
45.64
KB
-rw-r--r--
tkUndo.h
3.59
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tkBusy.h
/* * tkBusy.h -- * * This file defines the type of the structure describing a busy window. * * Copyright 1993-1998 Lucent Technologies, Inc. * * The "busy" command was created by George Howlett. Adapted for * integration into Tk by Jos Decoster and Donal K. Fellows. * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ typedef struct Busy { Display *display; /* Display of busy window */ Tcl_Interp *interp; /* Interpreter where "busy" command was * created. It's used to key the searches in * the window hierarchy. See the "windows" * command. */ Tk_Window tkBusy; /* Busy window: Transparent window used to * block delivery of events to windows * underneath it. */ Tk_Window tkParent; /* Parent window of the busy window. It may be * the reference window (if the reference is a * toplevel) or a mutual ancestor of the * reference window */ Tk_Window tkRef; /* Reference window of the busy window. It is * used to manage the size and position of the * busy window. */ int x, y; /* Position of the reference window */ int width, height; /* Size of the reference window. Retained to * know if the reference window has been * reconfigured to a new size. */ int menuBar; /* Menu bar flag. */ Tk_Cursor cursor; /* Cursor for the busy window. */ Tcl_HashEntry *hashPtr; /* Used the delete the busy window entry out * of the global hash table. */ Tcl_HashTable *tablePtr; Tk_OptionTable optionTable; } Busy;
Close