comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIFileURL.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsIFileURL;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsIURL;
6 import org.eclipse.swt.internal.mozilla.nsIFile;
7
8 const char[] NS_IFILEURL_IID_STR = "d26b2e2e-1dd1-11b2-88f3-8545a7ba7949";
9
10 const nsIID NS_IFILEURL_IID=
11 {0xd26b2e2e, 0x1dd1, 0x11b2,
12 [ 0x88, 0xf3, 0x85, 0x45, 0xa7, 0xba, 0x79, 0x49 ]};
13
14 interface nsIFileURL : nsIURL {
15
16 static const char[] IID_STR = NS_IFILEURL_IID_STR;
17 static const nsIID IID = NS_IFILEURL_IID;
18
19 extern(System):
20 nsresult GetFile(nsIFile *aFile);
21 nsresult SetFile(nsIFile aFile);
22
23 }
24