1 module org.eclipse.swt.internal.mozilla.nsIHistoryEntry;
2 
3 import java.lang.all;
4 
5 import org.eclipse.swt.internal.mozilla.Common;
6 import org.eclipse.swt.internal.mozilla.nsID;
7 import org.eclipse.swt.internal.mozilla.nsISupports;
8 
9 import org.eclipse.swt.internal.mozilla.nsIURI;
10 
11 const char[] NS_IHISTORYENTRY_IID_STR = "a41661d4-1417-11d5-9882-00c04fa02f40";
12 
13 const nsIID NS_IHISTORYENTRY_IID= 
14   {0xa41661d4, 0x1417, 0x11d5, 
15     [ 0x98, 0x82, 0x00, 0xc0, 0x4f, 0xa0, 0x2f, 0x40 ]};
16 
17 interface nsIHistoryEntry : nsISupports {
18 
19   static const char[] IID_STR = NS_IHISTORYENTRY_IID_STR;
20   static const nsIID IID = NS_IHISTORYENTRY_IID;
21 
22 extern(System):
23   nsresult GetURI(nsIURI  *aURI);
24   nsresult GetTitle(PRUnichar * *aTitle);
25   nsresult GetIsSubFrame(PRBool *aIsSubFrame);
26 
27 }
28