module org.eclipse.swt.internal.mozilla.nsILocalFile; import java.lang.all; import org.eclipse.swt.internal.mozilla.Common; import org.eclipse.swt.internal.mozilla.prlink; import org.eclipse.swt.internal.mozilla.prio; import org.eclipse.swt.internal.mozilla.prtime; import org.eclipse.swt.internal.mozilla.nsID; import org.eclipse.swt.internal.mozilla.nsIFile; import org.eclipse.swt.internal.mozilla.nsStringAPI; version(Tango){ import tango.stdc.stdio : FILE; } else { // Phobos import std.c.stdio : FILE; } const char[] NS_ILOCALFILE_IID_STR = "aa610f20-a889-11d3-8c81-000064657374"; const nsIID NS_ILOCALFILE_IID= {0xaa610f20, 0xa889, 0x11d3, [ 0x8c, 0x81, 0x00, 0x00, 0x64, 0x65, 0x73, 0x74 ]}; interface nsILocalFile : nsIFile { static const char[] IID_STR = NS_ILOCALFILE_IID_STR; static const nsIID IID = NS_ILOCALFILE_IID; extern(System): nsresult InitWithPath(nsAString * filePath); nsresult InitWithNativePath(nsACString * filePath); nsresult InitWithFile(nsILocalFile aFile); nsresult GetFollowLinks(PRBool *aFollowLinks); nsresult SetFollowLinks(PRBool aFollowLinks); nsresult OpenNSPRFileDesc(PRInt32 flags, PRInt32 mode, PRFileDesc * *_retval); nsresult OpenANSIFileDesc(char *mode, FILE * *_retval); nsresult Load(PRLibrary * *_retval); nsresult GetDiskSpaceAvailable(PRInt64 *aDiskSpaceAvailable); nsresult AppendRelativePath(nsAString * relativeFilePath); nsresult AppendRelativeNativePath(nsACString * relativeFilePath); nsresult GetPersistentDescriptor(nsACString * aPersistentDescriptor); nsresult SetPersistentDescriptor(nsACString * aPersistentDescriptor); nsresult Reveal(); nsresult Launch(); nsresult GetRelativeDescriptor(nsILocalFile fromFile, nsACString * _retval); nsresult SetRelativeDescriptor(nsILocalFile fromFile, nsACString * relativeDesc); }