comparison dwt/internal/mozilla/nsISelection.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
11 11
12 const nsIID NS_ISELECTION_IID= 12 const nsIID NS_ISELECTION_IID=
13 {0xb2c7ed59, 0x8634, 0x4352, 13 {0xb2c7ed59, 0x8634, 0x4352,
14 [ 0x9e, 0x37, 0x54, 0x84, 0xc8, 0xb6, 0xe4, 0xe1 ]}; 14 [ 0x9e, 0x37, 0x54, 0x84, 0xc8, 0xb6, 0xe4, 0xe1 ]};
15 15
16 //extern(System)
17
18 interface nsISelection : nsISupports { 16 interface nsISelection : nsISupports {
19 17
20 static const char[] IID_STR = NS_ISELECTION_IID_STR; 18 static const char[] IID_STR = NS_ISELECTION_IID_STR;
21 static const nsIID IID = NS_ISELECTION_IID; 19 static const nsIID IID = NS_ISELECTION_IID;
22 20
21 extern(System):
23 nsresult GetAnchorNode(nsIDOMNode *aAnchorNode); 22 nsresult GetAnchorNode(nsIDOMNode *aAnchorNode);
24 nsresult GetAnchorOffset(PRInt32 *aAnchorOffset); 23 nsresult GetAnchorOffset(PRInt32 *aAnchorOffset);
25 nsresult GetFocusNode(nsIDOMNode *aFocusNode); 24 nsresult GetFocusNode(nsIDOMNode *aFocusNode);
26 nsresult GetFocusOffset(PRInt32 *aFocusOffset); 25 nsresult GetFocusOffset(PRInt32 *aFocusOffset);
27 nsresult GetIsCollapsed(PRBool *aIsCollapsed); 26 nsresult GetIsCollapsed(PRBool *aIsCollapsed);