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.147.8.67
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 : tkFileFilter.h
/* * tkFileFilter.h -- * * Declarations for the file filter processing routines needed by the * file selection dialogs. * * Copyright (c) 1996 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #ifndef _TK_FILE_FILTER #define _TK_FILE_FILTER #define OSType long typedef struct GlobPattern { struct GlobPattern *next; /* Chains to the next glob pattern in a glob * pattern list */ char *pattern; /* String value of the pattern, such as * "*.txt" or "*.*" */ } GlobPattern; typedef struct MacFileType { struct MacFileType *next; /* Chains to the next mac file type in a mac * file type list */ OSType type; /* Mac file type, such as 'TEXT' or 'GIFF' */ } MacFileType; typedef struct FileFilterClause { struct FileFilterClause *next; /* Chains to the next clause in a clause * list */ GlobPattern *patterns; /* Head of glob pattern type list */ GlobPattern *patternsTail; /* Tail of glob pattern type list */ MacFileType *macTypes; /* Head of mac file type list */ MacFileType *macTypesTail; /* Tail of mac file type list */ } FileFilterClause; typedef struct FileFilter { struct FileFilter *next; /* Chains to the next filter in a filter * list */ char *name; /* Name of the file filter, such as "Text * Documents" */ FileFilterClause *clauses; /* Head of the clauses list */ FileFilterClause *clausesTail; /* Tail of the clauses list */ } FileFilter; /* *---------------------------------------------------------------------- * * FileFilterList -- * * The routine TkGetFileFilters() translates the string value of the * -filefilters option into a FileFilterList structure, which consists of * a list of file filters. * * Each file filter consists of one or more clauses. Each clause has one * or more glob patterns and/or one or more Mac file types * *---------------------------------------------------------------------- */ typedef struct FileFilterList { FileFilter *filters; /* Head of the filter list */ FileFilter *filtersTail; /* Tail of the filter list */ int numFilters; /* number of filters in the list */ } FileFilterList; MODULE_SCOPE void TkFreeFileFilters(FileFilterList *flistPtr); MODULE_SCOPE void TkInitFileFilters(FileFilterList *flistPtr); MODULE_SCOPE int TkGetFileFilters(Tcl_Interp *interp, FileFilterList *flistPtr, Tcl_Obj *valuePtr, int isWindows); #endif /* _TK_FILE_FILTER */
Close