/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis *file,Youcanobtainoneathttp://mozilla.org/MPL/2.0/.
*/
// High word is S_IFREG, low word is DOS file attribute #define ZIP_ATTRS_FILE 0x80000000 // High word is S_IFDIR, low word is DOS dir attribute #define ZIP_ATTRS_DIRECTORY 0x40000010 #define PERMISSIONS_FILE 0644 #define PERMISSIONS_DIR 0755
// Combine file type attributes with unix style permissions #define ZIP_ATTRS(p, a) ((p & 0xfff) << 16) | a
class nsZipHeader final : public nsIZipEntry {
~nsZipHeader() {
mExtraField = nullptr;
mLocalExtraField = nullptr;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.