+
+/** wxTarEntry::GetTypeFlag() values */
+enum wxTarType
+{
+ wxTAR_REGTYPE = '0', //!< regular file
+ wxTAR_LNKTYPE = '1', //!< hard link
+ wxTAR_SYMTYPE = '2', //!< symbolic link
+ wxTAR_CHRTYPE = '3', //!< character special
+ wxTAR_BLKTYPE = '4', //!< block special
+ wxTAR_DIRTYPE = '5', //!< directory
+ wxTAR_FIFOTYPE = '6', //!< named pipe
+ wxTAR_CONTTYPE = '7' //!< contiguous file
+};
+
+/** Archive Formats (use wxTAR_PAX, it's backward compatible) used by wxTarEntry */
+enum wxTarFormat
+{
+ wxTAR_USTAR, //!< POSIX.1-1990 tar format
+ wxTAR_PAX //!< POSIX.1-2001 tar format
+};
+
+