comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIDebug.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.nsIDebug;
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_IDEBUG_IID_STR = "3bf0c3d7-3bd9-4cf2-a971-33572c503e1e";
8
9 const nsIID NS_IDEBUG_IID=
10 {0x3bf0c3d7, 0x3bd9, 0x4cf2,
11 [ 0xa9, 0x71, 0x33, 0x57, 0x2c, 0x50, 0x3e, 0x1e ]};
12
13 interface nsIDebug : nsISupports {
14 static const char[] IID_STR = NS_IDEBUG_IID_STR;
15 static const nsIID IID = NS_IDEBUG_IID;
16
17 extern(System):
18 nsresult Assertion(char *aStr, char *aExpr, char *aFile, PRInt32 aLine);
19 nsresult Warning(char *aStr, char *aFile, PRInt32 aLine);
20 nsresult Break(char *aFile, PRInt32 aLine);
21 nsresult Abort(char *aFile, PRInt32 aLine);
22 }
23