Lowercased method names for idl.

This commit is contained in:
warren%netscape.com 2000-02-04 12:16:33 +00:00
Родитель caf4d5038c
Коммит 6139a47ee4
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -44,10 +44,10 @@
[uuid(CEB5BDB1-121D-11d3-BCFB-00805F0E1353)] [uuid(CEB5BDB1-121D-11d3-BCFB-00805F0E1353)]
interface nsIZip : nsISupports interface nsIZip : nsISupports
{ {
PRInt32 Open(in string aZipFileName); PRInt32 open(in string aZipFileName);
PRInt32 Extract(in string aFilename, in string aOutname); PRInt32 extract(in string aFilename, in string aOutname);
nsISimpleEnumerator Find(in string aPattern); nsISimpleEnumerator find(in string aPattern);
nsIInputStream GetInputStream(in string aFilename); nsIInputStream getInputStream(in string aFilename);
PRUint32 ItemSize(in string aFilename); PRUint32 itemSize(in string aFilename);
}; };