Files
lazarus-ccr/components/geckoport/version2/gecko10/nsidomfile.inc
loesje_ 9c2b80b5c4 * Re-generated .inc files with new version from the idlparser.
* Some string-types are now not returned as function result but as parameter. Solves several string issues.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2357 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-03-19 14:43:54 +00:00

33 lines
1.1 KiB
PHP

type
nsIDOMBlob = interface(nsISupports)
['{d5237f31-443a-460b-9e42-449a135346f0}']
function Getsize(): idlulong; safecall;
property size : idlulong read Getsize;
procedure Gettype( result_: DOMString); safecall;
function GetinternalStream(): nsIInputStream; safecall;
property internalStream : nsIInputStream read GetinternalStream;
procedure getInternalUrl(principal: nsIPrincipal; result_: DOMString); safecall;
function mozSlice(start: idllong; anend: idllong; contentType: DOMString) : nsIDOMBlob; safecall;
end;
nsIDOMFile = interface(nsIDOMBlob)
['{b096ef67-7b77-47f8-8e70-5d8ee36416bf}']
procedure Getname( result_: DOMString); safecall;
procedure GetmozFullPath( result_: DOMString); safecall;
procedure GetmozFullPathInternal( result_: DOMString); safecall;
end;
nsIDOMMozBlobBuilder = interface(nsISupports)
['{006d2cde-ec18-41d4-acc3-43682dd418e2}']
function getBlob(contentType: DOMString) : nsIDOMBlob; safecall;
function getFile(name: DOMString; contentType: DOMString) : nsIDOMFile; safecall;
procedure append(data: jsval); safecall;
end;