comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsITraceRefcnt.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsITraceRefcnt;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.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 interface nsITraceRefcnt : nsISupports {
14 static const char[] IID_STR = NS_ITRACEREFCNT_IID_STR;
15 static const nsIID IID = NS_ITRACEREFCNT_IID;
16
17 extern(System):
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