comparison dwt/internal/mozilla/nsIDebug.d @ 125:5583f8eeee6c

Synced mozilla with dwt-linux
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 12:49:08 +0100
parents
children
comparison
equal deleted inserted replaced
124:540fa4e9974a 125:5583f8eeee6c
1 module dwt.internal.mozilla.nsIDebug;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.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