root/dwt/internal/mozilla/nsIFileURL.d

Revision 327:b0d7eb5bd76c, 0.6 kB (checked in by John Reimer <terminal.node@gmail.com>, 3 years ago)

Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win

Line 
1 module dwt.internal.mozilla.nsIFileURL;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsIURL;
6 import dwt.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 }
Note: See TracBrowser for help on using the browser.