comparison dwt/internal/mozilla/nsIDebug.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_IDEBUG_IID= 9 const nsIID NS_IDEBUG_IID=
10 {0x3bf0c3d7, 0x3bd9, 0x4cf2, 10 {0x3bf0c3d7, 0x3bd9, 0x4cf2,
11 [ 0xa9, 0x71, 0x33, 0x57, 0x2c, 0x50, 0x3e, 0x1e ]}; 11 [ 0xa9, 0x71, 0x33, 0x57, 0x2c, 0x50, 0x3e, 0x1e ]};
12 12
13 //extern(System)
14 interface nsIDebug : nsISupports { 13 interface nsIDebug : nsISupports {
15 static const char[] IID_STR = NS_IDEBUG_IID_STR; 14 static const char[] IID_STR = NS_IDEBUG_IID_STR;
16 static const nsIID IID = NS_IDEBUG_IID; 15 static const nsIID IID = NS_IDEBUG_IID;
17 16
17 extern(System):
18 nsresult Assertion(char *aStr, char *aExpr, char *aFile, PRInt32 aLine); 18 nsresult Assertion(char *aStr, char *aExpr, char *aFile, PRInt32 aLine);
19 nsresult Warning(char *aStr, char *aFile, PRInt32 aLine); 19 nsresult Warning(char *aStr, char *aFile, PRInt32 aLine);
20 nsresult Break(char *aFile, PRInt32 aLine); 20 nsresult Break(char *aFile, PRInt32 aLine);
21 nsresult Abort(char *aFile, PRInt32 aLine); 21 nsresult Abort(char *aFile, PRInt32 aLine);
22 } 22 }