Fixed sig of LoadEntry

git-svn-id: svn://10.0.0.236/trunk@64590 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
warren%netscape.com
2000-03-30 08:09:45 +00:00
parent 448dc8d3b8
commit abaea32d2a
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,