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