comparison dwt/internal/mozilla/nsIIOService2.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
8 8
9 const nsIID NS_IIOSERVICE2_IID= 9 const nsIID NS_IIOSERVICE2_IID=
10 {0xd44fe6d4, 0xee35, 0x4789, 10 {0xd44fe6d4, 0xee35, 0x4789,
11 [ 0x88, 0x6a, 0xeb, 0x8f, 0x05, 0x54, 0xd0, 0x4e ]}; 11 [ 0x88, 0x6a, 0xeb, 0x8f, 0x05, 0x54, 0xd0, 0x4e ]};
12 12
13 //extern(System)
14
15 interface nsIIOService2 : nsIIOService { 13 interface nsIIOService2 : nsIIOService {
16 14
17 static const char[] IID_STR = NS_IIOSERVICE2_IID_STR; 15 static const char[] IID_STR = NS_IIOSERVICE2_IID_STR;
18 static const nsIID IID = NS_IIOSERVICE2_IID; 16 static const nsIID IID = NS_IIOSERVICE2_IID;
19 17
18 extern(System):
20 nsresult GetManageOfflineStatus(PRBool *aManageOfflineStatus); 19 nsresult GetManageOfflineStatus(PRBool *aManageOfflineStatus);
21 nsresult SetManageOfflineStatus(PRBool aManageOfflineStatus); 20 nsresult SetManageOfflineStatus(PRBool aManageOfflineStatus);
22 21
23 } 22 }
24 23