* 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
This commit is contained in:
loesje_
2012-03-19 14:43:54 +00:00
parent 63822c9462
commit 9c2b80b5c4
60 changed files with 193 additions and 300 deletions

View File

@@ -2,13 +2,12 @@ type
nsIHttpChannel = interface(nsIChannel)
['{9277fe09-f0cc-4cd9-bbce-581dd94b0260}']
function GetrequestMethod(): ACString; safecall;
procedure GetrequestMethod( result_: ACString); safecall;
procedure SetrequestMethod(arequestMethod: ACString); safecall;
property requestMethod : ACString read GetrequestMethod write SetrequestMethod;
function Getreferrer(): nsIURI; safecall;
procedure Setreferrer(areferrer: nsIURI); safecall;
property referrer : nsIURI read Getreferrer write Setreferrer;
function getRequestHeader(aHeader: ACString) : ACString; safecall;
procedure getRequestHeader(aHeader: ACString; result_: ACString); safecall;
procedure setRequestHeader(aHeader: ACString; aValue: ACString; aMerge: longbool); safecall;
procedure visitRequestHeaders(aVisitor: nsIHttpHeaderVisitor); safecall;
function GetallowPipelining(): longbool; safecall;
@@ -19,11 +18,10 @@ type
property redirectionLimit : idlulong read GetredirectionLimit write SetredirectionLimit;
function GetresponseStatus(): idlulong; safecall;
property responseStatus : idlulong read GetresponseStatus;
function GetresponseStatusText(): ACString; safecall;
property responseStatusText : ACString read GetresponseStatusText;
procedure GetresponseStatusText( result_: ACString); safecall;
function GetrequestSucceeded(): longbool; safecall;
property requestSucceeded : longbool read GetrequestSucceeded;
function getResponseHeader(header: ACString) : ACString; safecall;
procedure getResponseHeader(header: ACString; result_: ACString); safecall;
procedure setResponseHeader(header: ACString; value: ACString; merge: longbool); safecall;
procedure visitResponseHeaders(aVisitor: nsIHttpHeaderVisitor); safecall;
function isNoStoreResponse() : longbool; safecall;