Fixed sig of LoadEntry

This commit is contained in:
warren%netscape.com 2000-03-30 08:09:45 +00:00
parent a6d51f6797
commit 6de6d5885a
2 changed files with 2 additions and 2 deletions

View File

@ -430,7 +430,7 @@ nsJAR::CreateInputStream(const char* aFilename, nsIInputStream **is)
}
nsresult
nsJAR::LoadEntry(const char* aFilename, const char** aBuf, PRUint32* aBufLen)
nsJAR::LoadEntry(const char* aFilename, char** aBuf, PRUint32* aBufLen)
{
//-- Get a stream for reading the manifest file
nsresult rv;

View File

@ -85,7 +85,7 @@ class nsJAR : public nsIZipReader
//-- Private functions
nsresult CreateInputStream(const char* aFilename, nsIInputStream** is);
nsresult LoadEntry(const char* aFilename, const char** aBuf,
nsresult LoadEntry(const char* aFilename, char** aBuf,
PRUint32* aBufLen = nsnull);
PRInt32 ReadLine(const char** src);
nsresult ParseOneFile(const char* filebuf, PRInt16 aFileType,