comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsICookie2.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.nsICookie2;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsICookie;
6 import org.eclipse.swt.internal.mozilla.nsStringAPI;
7
8 const char[] NS_ICOOKIE2_IID_STR = "d3493503-7854-46ed-8284-8af54a847efb";
9
10 const nsIID NS_ICOOKIE2_IID=
11 {0xd3493503, 0x7854, 0x46ed,
12 [ 0x82, 0x84, 0x8a, 0xf5, 0x4a, 0x84, 0x7e, 0xfb ]};
13
14 interface nsICookie2 : nsICookie {
15
16 static const char[] IID_STR = NS_ICOOKIE2_IID_STR;
17 static const nsIID IID = NS_ICOOKIE2_IID;
18
19 extern(System):
20 nsresult GetRawHost(nsACString * aRawHost);
21 nsresult GetIsSession(PRBool *aIsSession);
22 nsresult GetExpiry(PRInt64 *aExpiry);
23 }
24