Bug #63346 --> add methods for reveal and launch to a local file. Stub implementions for OS/2 and Unix right now.

r=conrad
sr=sspitzer


git-svn-id: svn://10.0.0.236/trunk@85736 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mscott%netscape.com
2001-01-30 05:02:48 +00:00
parent 81a3ff9143
commit d36ff4d4a0
4 changed files with 86 additions and 0 deletions

View File

@@ -1333,6 +1333,19 @@ nsLocalFile::SetPersistentDescriptor(const char *aPersistentDescriptor)
return InitWithPath(aPersistentDescriptor);
}
NS_IMETHODIMP
nsLocalFile::Reveal()
{
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP
nsLocalFile::Launch()
{
return NS_ERROR_FAILURE;
}
nsresult
NS_NewLocalFile(const char *path, PRBool followSymlinks, nsILocalFile **result)
{