comparison dwt/internal/mozilla/nsIRequest.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_IREQUEST_IID= 13 const nsIID NS_IREQUEST_IID=
14 {0xef6bfbd2, 0xfd46, 0x48d8, 14 {0xef6bfbd2, 0xfd46, 0x48d8,
15 [ 0x96, 0xb7, 0x9f, 0x8f, 0x0f, 0xd3, 0x87, 0xfe ]}; 15 [ 0x96, 0xb7, 0x9f, 0x8f, 0x0f, 0xd3, 0x87, 0xfe ]};
16 16
17 //extern(System)
18
19 interface nsIRequest : nsISupports { 17 interface nsIRequest : nsISupports {
20 18
21 static const char[] IID_STR = NS_IREQUEST_IID_STR; 19 static const char[] IID_STR = NS_IREQUEST_IID_STR;
22 static const nsIID IID = NS_IREQUEST_IID; 20 static const nsIID IID = NS_IREQUEST_IID;
23 21
22 extern(System):
24 nsresult GetName(nsACString * aName); 23 nsresult GetName(nsACString * aName);
25 nsresult IsPending(PRBool *_retval); 24 nsresult IsPending(PRBool *_retval);
26 nsresult GetStatus(nsresult *aStatus); 25 nsresult GetStatus(nsresult *aStatus);
27 nsresult Cancel(nsresult aStatus); 26 nsresult Cancel(nsresult aStatus);
28 nsresult Suspend(); 27 nsresult Suspend();