comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIDOMSerializer_1_7.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.nsIDOMSerializer_1_7;
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.nsIOutputStream;
7 import org.eclipse.swt.internal.mozilla.nsIDOMNode;
8 import org.eclipse.swt.internal.mozilla.nsStringAPI;
9
10 const char[] NS_IDOMSERIALIZER_IID_STR = "9fd4ba15-e67c-4c98-b52c-7715f62c9196";
11
12 const nsIID NS_IDOMSERIALIZER_IID=
13 {0x9fd4ba15, 0xe67c, 0x4c98,
14 [ 0xb5, 0x2c, 0x77, 0x15, 0xf6, 0x2c, 0x91, 0x96 ]};
15
16 interface nsIDOMSerializer_1_7 : nsISupports {
17
18 static const char[] IID_STR = NS_IDOMSERIALIZER_IID_STR;
19 static const nsIID IID = NS_IDOMSERIALIZER_IID;
20
21 extern(System):
22 nsresult SerializeToString(nsIDOMNode root, nsAString * _retval);
23 nsresult SerializeToStream(nsIDOMNode root, nsIOutputStream stream, nsACString * charset);
24
25 }
26