mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface nsIDOMArchiveRequest;
|
|
|
|
[scriptable, builtinclass, uuid(a616ab85-fc3a-4028-9f10-f8620ee1b8e1)]
|
|
interface nsIDOMArchiveReader : nsISupports
|
|
{
|
|
nsIDOMArchiveRequest getFilenames();
|
|
nsIDOMArchiveRequest getFile(in DOMString filename);
|
|
nsIDOMArchiveRequest getFiles();
|
|
};
|
|
|
|
/* This dictionary is the optional argument for the
|
|
* ArchiveReader constructor:
|
|
* var a = new ArchiveReader(blob, { encoding: "iso-8859-1" }); */
|
|
dictionary ArchiveReaderOptions
|
|
{
|
|
DOMString encoding = "windows-1252"; // Default fallback encoding
|
|
};
|
|
|
|
%{ C++
|
|
#define NS_ARCHIVEREADER_CID \
|
|
{0xb6b8c817, 0x4e9a, 0x46f8, \
|
|
{0x9e, 0x3e, 0x3d, 0x96, 0x79, 0x01, 0xa2, 0x80}}
|
|
#define NS_ARCHIVEREADER_CONTRACTID \
|
|
"@mozilla.org/files/archivereader;1"
|
|
%}
|