comparison dwt/internal/mozilla/nsITraceRefcnt.d @ 348:9a4d7706df52

Test Update to fix linux XPCOM interface issues
author John Reimer <terminal.node@gmail.com>
date Fri, 31 Oct 2008 21:46:44 -0700
parents 942da4b6558a
children
comparison
equal deleted inserted replaced
347:ff6dd48f5248 348:9a4d7706df52
8 8
9 const nsIID NS_ITRACEREFCNT_IID= 9 const nsIID NS_ITRACEREFCNT_IID=
10 {0x273dc92f, 0x0fe6, 0x4545, 10 {0x273dc92f, 0x0fe6, 0x4545,
11 [ 0x96, 0xa9, 0x21, 0xbe, 0x77, 0x82, 0x80, 0x39 ]}; 11 [ 0x96, 0xa9, 0x21, 0xbe, 0x77, 0x82, 0x80, 0x39 ]};
12 12
13 //extern(System)
14 interface nsITraceRefcnt : nsISupports { 13 interface nsITraceRefcnt : nsISupports {
15 static const char[] IID_STR = NS_ITRACEREFCNT_IID_STR; 14 static const char[] IID_STR = NS_ITRACEREFCNT_IID_STR;
16 static const nsIID IID = NS_ITRACEREFCNT_IID; 15 static const nsIID IID = NS_ITRACEREFCNT_IID;
17 16
17 extern(System):
18 nsresult LogAddRef(void * aPtr, nsrefcnt aNewRefcnt, char *aTypeName, PRUint32 aInstanceSize); 18 nsresult LogAddRef(void * aPtr, nsrefcnt aNewRefcnt, char *aTypeName, PRUint32 aInstanceSize);
19 nsresult LogRelease(void * aPtr, nsrefcnt aNewRefcnt, char *aTypeName); 19 nsresult LogRelease(void * aPtr, nsrefcnt aNewRefcnt, char *aTypeName);
20 nsresult LogCtor(void * aPtr, char *aTypeName, PRUint32 aInstanceSize); 20 nsresult LogCtor(void * aPtr, char *aTypeName, PRUint32 aInstanceSize);
21 nsresult LogDtor(void * aPtr, char *aTypeName, PRUint32 aInstanceSize); 21 nsresult LogDtor(void * aPtr, char *aTypeName, PRUint32 aInstanceSize);
22 nsresult LogAddCOMPtr(void * aPtr, nsISupports aObject); 22 nsresult LogAddCOMPtr(void * aPtr, nsISupports aObject);