comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIFactory.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
2 module org.eclipse.swt.internal.mozilla.nsIFactory;
3
4 import org.eclipse.swt.internal.mozilla.Common;
5 import org.eclipse.swt.internal.mozilla.nsID;
6 import org.eclipse.swt.internal.mozilla.nsISupports;
7
8 const char[] NS_IFACTORY_IID_STR = "00000001-0000-0000-c000-000000000046";
9
10 const nsIID NS_IFACTORY_IID=
11 {0x00000001, 0x0000, 0x0000,
12 [ 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46 ]};
13
14 interface nsIFactory : nsISupports {
15
16 static const char[] IID_STR = NS_IFACTORY_IID_STR;
17 static const nsIID IID = NS_IFACTORY_IID;
18
19 extern(System):
20 nsresult CreateInstance(nsISupports aOuter, nsIID * iid, void * *result);
21 nsresult LockFactory(PRBool lock);
22 }