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

14 lines
587 B
PHP

type
nsIObjectOutputStream = interface(nsIBinaryOutputStream)
['{92c898ac-5fde-4b99-87b3-5d486422094b}']
procedure writeObject(aObject: nsISupports; aIsStrongRef: longbool); safecall;
procedure writeSingleRefObject(aObject: nsISupports); safecall;
procedure writeCompoundObject(aObject: nsISupports; constref aIID: TGuid; aIsStrongRef: longbool); safecall;
procedure writeID(aID: nsIDRef); safecall;
function getBuffer(aLength: PRUint32; aAlignMask: PRUint32) : charPtr; safecall;
procedure putBuffer(aBuffer: charPtr; aLength: PRUint32); safecall;
end;