view org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/internal/mozilla/nsIPrefLocalizedString.d @ 25:f713da8bc051

Added SWT Linux GTK
author Frank Benoit <benoit@tionex.de>
date Fri, 20 Mar 2009 23:03:58 +0100
parents
children
line wrap: on
line source

module org.eclipse.swt.internal.mozilla.nsIPrefLocalizedString;

import java.lang.all;

import org.eclipse.swt.internal.mozilla.Common;
import org.eclipse.swt.internal.mozilla.nsID;
import org.eclipse.swt.internal.mozilla.nsISupports;

const char[] NS_IPREFLOCALIZEDSTRING_IID_STR = "ae419e24-1dd1-11b2-b39a-d3e5e7073802";

const nsIID NS_IPREFLOCALIZEDSTRING_IID= 
  {0xae419e24, 0x1dd1, 0x11b2, 
    [ 0xb3, 0x9a, 0xd3, 0xe5, 0xe7, 0x07, 0x38, 0x02 ]};

interface nsIPrefLocalizedString : nsISupports {

  static const char[] IID_STR = NS_IPREFLOCALIZEDSTRING_IID_STR;
  static const nsIID IID = NS_IPREFLOCALIZEDSTRING_IID;

extern(System):
  nsresult GetData(PRUnichar * *aData);
  nsresult SetData(PRUnichar * aData);
  nsresult ToString(PRUnichar **_retval);
  nsresult SetDataWithLength(PRUint32 length, PRUnichar *data);

}