You've already forked lazarus-ccr
* 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
14 lines
587 B
PHP
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;
|
|
|