view org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIDOMEventGroup.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
line wrap: on
line source

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

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

alias PRUint64 DOMTimeStamp;

const char[] NS_IDOMEVENTGROUP_IID_STR = "33347bee-6620-4841-8152-36091ae80c7e";

const nsIID NS_IDOMEVENTGROUP_IID= 
  {0x33347bee, 0x6620, 0x4841, 
    [ 0x81, 0x52, 0x36, 0x09, 0x1a, 0xe8, 0x0c, 0x7e ]};

interface nsIDOMEventGroup : nsISupports {

  static const char[] IID_STR = NS_IDOMEVENTGROUP_IID_STR;
  static const nsIID IID = NS_IDOMEVENTGROUP_IID;

extern(System):
  nsresult IsSameEventGroup(nsIDOMEventGroup other, PRBool *_retval);

}