Files
lazarus-ccr/components/geckoport/version2/gecko10/nsiuri.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

42 lines
2.0 KiB
PHP

type
nsIURI = interface(nsISupports)
['{395fe045-7d18-4adb-a3fd-af98c8a1af11}']
procedure Getspec( result_: AUTF8String); safecall;
procedure Setspec(aspec: AUTF8String); safecall;
procedure GetprePath( result_: AUTF8String); safecall;
procedure Getscheme( result_: ACString); safecall;
procedure Setscheme(ascheme: ACString); safecall;
procedure GetuserPass( result_: AUTF8String); safecall;
procedure SetuserPass(auserPass: AUTF8String); safecall;
procedure Getusername( result_: AUTF8String); safecall;
procedure Setusername(ausername: AUTF8String); safecall;
procedure Getpassword( result_: AUTF8String); safecall;
procedure Setpassword(apassword: AUTF8String); safecall;
procedure GethostPort( result_: AUTF8String); safecall;
procedure SethostPort(ahostPort: AUTF8String); safecall;
procedure Gethost( result_: AUTF8String); safecall;
procedure Sethost(ahost: AUTF8String); safecall;
function Getport(): idllong; safecall;
procedure Setport(aport: idllong); safecall;
property port : idllong read Getport write Setport;
procedure Getpath( result_: AUTF8String); safecall;
procedure Setpath(apath: AUTF8String); safecall;
function equals(other: nsIURI) : longbool; safecall;
function schemeIs(ascheme: PAnsiChar) : longbool; safecall;
function clone() : nsIURI; safecall;
procedure resolve(relativePath: AUTF8String; result_: AUTF8String); safecall;
procedure GetasciiSpec( result_: ACString); safecall;
procedure GetasciiHost( result_: ACString); safecall;
procedure GetoriginCharset( result_: ACString); safecall;
procedure Getref( result_: AUTF8String); safecall;
procedure Setref(aref: AUTF8String); safecall;
function equalsExceptRef(other: nsIURI) : longbool; safecall;
function cloneIgnoringRef() : nsIURI; safecall;
procedure GetspecIgnoringRef( result_: AUTF8String); safecall;
function GethasRef(): longbool; safecall;
property hasRef : longbool read GethasRef;
end;