comparison dwt/internal/mozilla/nsISupports.d @ 293:3dfa75c74ed2

merge
author Frank Benoit <benoit@tionex.de>
date Thu, 07 Aug 2008 15:16:09 +0200
parents 93409d9838c5 b0bd1789106b
children 942da4b6558a
comparison
equal deleted inserted replaced
292:695802b523c0 293:3dfa75c74ed2
14 interface IUnknown 14 interface IUnknown
15 { 15 {
16 static const char[] IID_STR = NS_ISUPPORTS_IID_STR; 16 static const char[] IID_STR = NS_ISUPPORTS_IID_STR;
17 static const nsIID IID = NS_ISUPPORTS_IID; 17 static const nsIID IID = NS_ISUPPORTS_IID;
18 18
19 nsresult QueryInterface(nsIID * uuid, void **result); 19 nsresult QueryInterface(ref nsIID uuid, void **result);
20 20
21 nsrefcnt AddRef(); 21 nsrefcnt AddRef();
22 nsrefcnt Release(); 22 nsrefcnt Release();
23 } 23 }
24 24