comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIDOMSerializer.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;
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 = "a6cf9123-15b3-11d2-932e-00805f8add32";
11
12 const nsIID NS_IDOMSERIALIZER_IID=
13 {0xa6cf9123, 0x15b3, 0x11d2,
14 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
15
16 interface nsIDOMSerializer : 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
23 nsresult SerializeToString(nsIDOMNode root, PRUnichar ** _retval);
24 nsresult SerializeToStream(nsIDOMNode root, nsIOutputStream stream, char* charset);
25
26 }
27