comparison dwt/internal/mozilla/nsIDOMStorageItem.d @ 291:b0bd1789106b

fix: added wrong directory :(
author John Reimer<terminal.node@gmail.com>
date Wed, 06 Aug 2008 18:29:44 -0700
parents dd63eb078d7a
children 942da4b6558a
comparison
equal deleted inserted replaced
290:4c1340edee0d 291:b0bd1789106b
1 module dwt.internal.mozilla.nsIDOMStorageItem;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 import dwt.internal.mozilla.nsStringAPI;
8
9 alias PRUint64 DOMTimeStamp;
10
11 const char[] NS_IDOMSTORAGEITEM_IID_STR = "0cc37c78-4c5f-48e1-adfc-7480b8fe9dc4";
12
13 const nsIID NS_IDOMSTORAGEITEM_IID=
14 {0x0cc37c78, 0x4c5f, 0x48e1,
15 [ 0xad, 0xfc, 0x74, 0x80, 0xb8, 0xfe, 0x9d, 0xc4 ]};
16
17 extern(System)
18
19 interface nsIDOMStorageItem : nsISupports {
20
21 static const char[] IID_STR = NS_IDOMSTORAGEITEM_IID_STR;
22 static const nsIID IID = NS_IDOMSTORAGEITEM_IID;
23
24 nsresult GetSecure(PRBool *aSecure);
25 nsresult SetSecure(PRBool aSecure);
26 nsresult GetValue(nsAString * aValue);
27 nsresult SetValue(nsAString * aValue);
28
29 }
30