comparison dwt/internal/mozilla/nsITraceRefcnt.d @ 291:b0bd1789106b

fix: added wrong directory :(
author John Reimer<terminal.node@gmail.com>
date Wed, 06 Aug 2008 18:29:44 -0700
parents dd63eb078d7a
children 942da4b6558a
comparison
equal deleted inserted replaced
290:4c1340edee0d 291:b0bd1789106b
1 module dwt.internal.mozilla.nsITraceRefcnt;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 const char[] NS_ITRACEREFCNT_IID_STR = "273dc92f-0fe6-4545-96a9-21be77828039";
8
9 const nsIID NS_ITRACEREFCNT_IID=
10 {0x273dc92f, 0x0fe6, 0x4545,
11 [ 0x96, 0xa9, 0x21, 0xbe, 0x77, 0x82, 0x80, 0x39 ]};
12
13 extern(System)
14 interface nsITraceRefcnt : nsISupports {
15 static const char[] IID_STR = NS_ITRACEREFCNT_IID_STR;
16 static const nsIID IID = NS_ITRACEREFCNT_IID;
17
18 nsresult LogAddRef(void * aPtr, nsrefcnt aNewRefcnt, char *aTypeName, PRUint32 aInstanceSize);
19 nsresult LogRelease(void * aPtr, nsrefcnt aNewRefcnt, char *aTypeName);
20 nsresult LogCtor(void * aPtr, char *aTypeName, PRUint32 aInstanceSize);
21 nsresult LogDtor(void * aPtr, char *aTypeName, PRUint32 aInstanceSize);
22 nsresult LogAddCOMPtr(void * aPtr, nsISupports aObject);
23 nsresult LogReleaseCOMPtr(void * aPtr, nsISupports aObject);
24 }
25