comparison dwt/internal/mozilla/nsIFile.d @ 154:535243e6d16a

Fixes to make dwt compile with ldc
author Jacob Carlborg <doob@me.com>
date Sat, 13 Jun 2009 00:25:05 +0200
parents 5583f8eeee6c
children
comparison
equal deleted inserted replaced
153:8433dabeb15e 154:535243e6d16a
12 {0xc8c0a080, 0x0868, 0x11d3, 12 {0xc8c0a080, 0x0868, 0x11d3,
13 [ 0x91, 0x5f, 0xd9, 0xd8, 0x89, 0xd4, 0x8e, 0x3c ]}; 13 [ 0x91, 0x5f, 0xd9, 0xd8, 0x89, 0xd4, 0x8e, 0x3c ]};
14 14
15 interface nsIFile : nsISupports { 15 interface nsIFile : nsISupports {
16 static const char[] IID_STR = NS_IFILE_IID_STR; 16 static const char[] IID_STR = NS_IFILE_IID_STR;
17 static const nsIID IID = NS_IFILE_IID; 17 static /*const*/ nsIID IID = NS_IFILE_IID; // const causes bug in ldc TODO
18 18
19 enum { NORMAL_FILE_TYPE = 0U }; 19 enum { NORMAL_FILE_TYPE = 0U };
20 enum { DIRECTORY_TYPE = 1U }; 20 enum { DIRECTORY_TYPE = 1U };
21 21
22 extern(System): 22 extern(System):