comparison dwt/internal/mozilla/nsISHistory.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
12 12
13 const nsIID NS_ISHISTORY_IID= 13 const nsIID NS_ISHISTORY_IID=
14 {0x7294fe9b, 0x14d8, 0x11d5, 14 {0x7294fe9b, 0x14d8, 0x11d5,
15 [ 0x98, 0x82, 0x00, 0xc0, 0x4f, 0xa0, 0x2f, 0x40 ]}; 15 [ 0x98, 0x82, 0x00, 0xc0, 0x4f, 0xa0, 0x2f, 0x40 ]};
16 16
17 //extern(System)
18
19 interface nsISHistory : nsISupports { 17 interface nsISHistory : nsISupports {
20 18
21 static const char[] IID_STR = NS_ISHISTORY_IID_STR; 19 static const char[] IID_STR = NS_ISHISTORY_IID_STR;
22 static const nsIID IID = NS_ISHISTORY_IID; 20 static const nsIID IID = NS_ISHISTORY_IID;
23 21
22 extern(System):
24 nsresult GetCount(PRInt32 *aCount); 23 nsresult GetCount(PRInt32 *aCount);
25 nsresult GetIndex(PRInt32 *aIndex); 24 nsresult GetIndex(PRInt32 *aIndex);
26 nsresult GetMaxLength(PRInt32 *aMaxLength); 25 nsresult GetMaxLength(PRInt32 *aMaxLength);
27 nsresult SetMaxLength(PRInt32 aMaxLength); 26 nsresult SetMaxLength(PRInt32 aMaxLength);
28 nsresult GetEntryAtIndex(PRInt32 index, PRBool modifyIndex, nsIHistoryEntry *_retval); 27 nsresult GetEntryAtIndex(PRInt32 index, PRBool modifyIndex, nsIHistoryEntry *_retval);