diff dwt/internal/mozilla/nsIEnumerator.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
line wrap: on
line diff
--- a/dwt/internal/mozilla/nsIEnumerator.d	Wed Oct 29 20:12:27 2008 -0700
+++ b/dwt/internal/mozilla/nsIEnumerator.d	Fri Oct 31 21:46:44 2008 -0700
@@ -14,13 +14,12 @@
   {0xad385286, 0xcbc4, 0x11d2, 
     [ 0x8c, 0xca, 0x00, 0x60, 0xb0, 0xfc, 0x14, 0xa3 ]};
 
-//extern(System)
-
 interface nsIEnumerator : nsISupports {
 
   static const char[] IID_STR = NS_IENUMERATOR_IID_STR;
   static const nsIID IID = NS_IENUMERATOR_IID;
 
+extern(System):
   nsresult First();
   nsresult Next();
   nsresult CurrentItem(nsISupports *_retval);
@@ -38,13 +37,12 @@
   {0x75f158a0, 0xcadd, 0x11d2, 
     [ 0x8c, 0xca, 0x00, 0x60, 0xb0, 0xfc, 0x14, 0xa3 ]};
 
-//extern(System)
-
 interface nsIBidirectionalEnumerator : nsIEnumerator {
 
   static const char[] IID_STR = NS_IBIDIRECTIONALENUMERATOR_IID_STR;
   static const nsIID IID = NS_IBIDIRECTIONALENUMERATOR_IID;
 
+extern(System):
   nsresult Last();
   nsresult Prev();