comparison dwt/internal/mozilla/nsIAppShell.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
9 9
10 const nsIID NS_IAPPSHELL_IID= 10 const nsIID NS_IAPPSHELL_IID=
11 {0xa0757c31, 0xeeac, 0x11d1, 11 {0xa0757c31, 0xeeac, 0x11d1,
12 [ 0x9e, 0xc1, 0x00, 0xaa, 0x00, 0x2f, 0xb8, 0x21 ]}; 12 [ 0x9e, 0xc1, 0x00, 0xaa, 0x00, 0x2f, 0xb8, 0x21 ]};
13 13
14 //extern(System)
15
16 interface nsIAppShell : nsISupports { 14 interface nsIAppShell : nsISupports {
17 static const char[] IID_STR = NS_IAPPSHELL_IID_STR; 15 static const char[] IID_STR = NS_IAPPSHELL_IID_STR;
18 static const nsIID IID = NS_IAPPSHELL_IID; 16 static const nsIID IID = NS_IAPPSHELL_IID;
19 17
18 extern(System):
20 nsresult Create(int *argc, char **argv); 19 nsresult Create(int *argc, char **argv);
21 nsresult Run(); 20 nsresult Run();
22 nsresult Spinup(); 21 nsresult Spinup();
23 nsresult Spindown(); 22 nsresult Spindown();
24 nsresult ListenToEventQueue(nsIEventQueue * aQueue, PRBool aListen); 23 nsresult ListenToEventQueue(nsIEventQueue * aQueue, PRBool aListen);