* Added inc header-files for all gecko-9 idl files that are different to gecko-10

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2363 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
loesje_
2012-03-19 17:05:55 +00:00
parent 8736529541
commit 3b25f366e0
13 changed files with 623 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
type
nsILocalFile = interface(nsIFile)
['{aa610f20-a889-11d3-8c81-000064657374}']
procedure initWithPath(filePath: AString); safecall;
procedure initWithNativePath(filePath: ACString); safecall;
procedure initWithFile(aFile: nsILocalFile); safecall;
function GetfollowLinks(): longbool; safecall;
procedure SetfollowLinks(afollowLinks: longbool); safecall;
property followLinks : longbool read GetfollowLinks write SetfollowLinks;
function openNSPRFileDesc(flags: idllong; mode: idllong) : PRFileDescStar; safecall;
function openANSIFileDesc(mode: PAnsiChar) : PFILE; safecall;
function load() : PRLibraryStar; safecall;
function GetdiskSpaceAvailable(): PRInt64; safecall;
property diskSpaceAvailable : PRInt64 read GetdiskSpaceAvailable;
procedure appendRelativePath(relativeFilePath: AString); safecall;
procedure appendRelativeNativePath(relativeFilePath: ACString); safecall;
procedure GetpersistentDescriptor( result_: ACString); safecall;
procedure SetpersistentDescriptor(apersistentDescriptor: ACString); safecall;
procedure reveal(); safecall;
procedure launch(); safecall;
procedure getRelativeDescriptor(fromFile: nsILocalFile; result_: ACString); safecall;
procedure setRelativeDescriptor(fromFile: nsILocalFile; relativeDesc: ACString); safecall;
end;
const
nsILocalFile_DELETE_ON_CLOSE=$80000000;