comparison dwt/internal/mozilla/nsIPrompt.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_IPROMPT_IID= 9 const nsIID NS_IPROMPT_IID=
10 {0xa63f70c0, 0x148b, 0x11d3, 10 {0xa63f70c0, 0x148b, 0x11d3,
11 [ 0x93, 0x33, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 ]}; 11 [ 0x93, 0x33, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 ]};
12 12
13 //extern(System)
14
15 interface nsIPrompt : nsISupports { 13 interface nsIPrompt : nsISupports {
16 14
17 static const char[] IID_STR = NS_IPROMPT_IID_STR; 15 static const char[] IID_STR = NS_IPROMPT_IID_STR;
18 static const nsIID IID = NS_IPROMPT_IID; 16 static const nsIID IID = NS_IPROMPT_IID;
19 17
18 extern(System):
20 nsresult Alert(PRUnichar *dialogTitle, PRUnichar *text); 19 nsresult Alert(PRUnichar *dialogTitle, PRUnichar *text);
21 nsresult AlertCheck(PRUnichar *dialogTitle, PRUnichar *text, PRUnichar *checkMsg, PRBool *checkValue); 20 nsresult AlertCheck(PRUnichar *dialogTitle, PRUnichar *text, PRUnichar *checkMsg, PRBool *checkValue);
22 nsresult Confirm(PRUnichar *dialogTitle, PRUnichar *text, PRBool *_retval); 21 nsresult Confirm(PRUnichar *dialogTitle, PRUnichar *text, PRBool *_retval);
23 nsresult ConfirmCheck(PRUnichar *dialogTitle, PRUnichar *text, PRUnichar *checkMsg, PRBool *checkValue, PRBool *_retval); 22 nsresult ConfirmCheck(PRUnichar *dialogTitle, PRUnichar *text, PRUnichar *checkMsg, PRBool *checkValue, PRBool *_retval);
24 23