comparison dwt/internal/mozilla/nsIURI.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_IURI_IID= 10 const nsIID NS_IURI_IID=
11 {0x07a22cc0, 0x0ce5, 0x11d3, 11 {0x07a22cc0, 0x0ce5, 0x11d3,
12 [ 0x93, 0x31, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 ]}; 12 [ 0x93, 0x31, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 ]};
13 13
14 //extern(System)
15
16 interface nsIURI : nsISupports { 14 interface nsIURI : nsISupports {
17 15
18 static const char[] IID_STR = NS_IURI_IID_STR; 16 static const char[] IID_STR = NS_IURI_IID_STR;
19 static const nsIID IID = NS_IURI_IID; 17 static const nsIID IID = NS_IURI_IID;
20 18
19 extern(System):
21 nsresult GetSpec(nsACString * aSpec); 20 nsresult GetSpec(nsACString * aSpec);
22 nsresult SetSpec(nsACString * aSpec); 21 nsresult SetSpec(nsACString * aSpec);
23 nsresult GetPrePath(nsACString * aPrePath); 22 nsresult GetPrePath(nsACString * aPrePath);
24 nsresult GetScheme(nsACString * aScheme); 23 nsresult GetScheme(nsACString * aScheme);
25 nsresult SetScheme(nsACString * aScheme); 24 nsresult SetScheme(nsACString * aScheme);