comparison dwt/internal/mozilla/nsIWebNavigation.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
13 13
14 const nsIID NS_IWEBNAVIGATION_IID= 14 const nsIID NS_IWEBNAVIGATION_IID=
15 {0xf5d9e7b0, 0xd930, 0x11d3, 15 {0xf5d9e7b0, 0xd930, 0x11d3,
16 [ 0xb0, 0x57, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]}; 16 [ 0xb0, 0x57, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]};
17 17
18 //extern(System)
19
20 interface nsIWebNavigation : nsISupports { 18 interface nsIWebNavigation : nsISupports {
21 19
22 static const char[] IID_STR = NS_IWEBNAVIGATION_IID_STR; 20 static const char[] IID_STR = NS_IWEBNAVIGATION_IID_STR;
23 static const nsIID IID = NS_IWEBNAVIGATION_IID; 21 static const nsIID IID = NS_IWEBNAVIGATION_IID;
24 22
23 extern(System):
25 nsresult GetCanGoBack(PRBool *aCanGoBack); 24 nsresult GetCanGoBack(PRBool *aCanGoBack);
26 nsresult GetCanGoForward(PRBool *aCanGoForward); 25 nsresult GetCanGoForward(PRBool *aCanGoForward);
27 nsresult GoBack(); 26 nsresult GoBack();
28 nsresult GoForward(); 27 nsresult GoForward();
29 nsresult GotoIndex(PRInt32 index); 28 nsresult GotoIndex(PRInt32 index);