comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIPrefBranch2.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.nsIPrefBranch2;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsISupports;
6 import org.eclipse.swt.internal.mozilla.nsIPrefBranch;
7 import org.eclipse.swt.internal.mozilla.nsIObserver;
8
9 const char[] NS_IPREFBRANCH2_IID_STR = "74567534-eb94-4b1c-8f45-389643bfc555";
10
11 const nsIID NS_IPREFBRANCH2_IID=
12 {0x74567534, 0xeb94, 0x4b1c,
13 [ 0x8f, 0x45, 0x38, 0x96, 0x43, 0xbf, 0xc5, 0x55 ]};
14
15 interface nsIPrefBranch2 : nsIPrefBranch {
16
17 static const char[] IID_STR = NS_IPREFBRANCH2_IID_STR;
18 static const nsIID IID = NS_IPREFBRANCH2_IID;
19
20 extern(System):
21 nsresult AddObserver(char *aDomain, nsIObserver aObserver, PRBool aHoldWeak);
22 nsresult RemoveObserver(char *aDomain, nsIObserver aObserver);
23
24 }
25