view dwt/internal/mozilla/nsIDOMEventListener.d @ 125:5583f8eeee6c

Synced mozilla with dwt-linux
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 12:49:08 +0100
parents
children
line wrap: on
line source

module dwt.internal.mozilla.nsIDOMEventListener;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;
import dwt.internal.mozilla.nsIDOMEvent;

alias PRUint64 DOMTimeStamp;

const char[] NS_IDOMEVENTLISTENER_IID_STR = "df31c120-ded6-11d1-bd85-00805f8ae3f4";
const nsIID NS_IDOMEVENTLISTENER_IID= 
  {0xdf31c120, 0xded6, 0x11d1, 
    [ 0xbd, 0x85, 0x00, 0x80, 0x5f, 0x8a, 0xe3, 0xf4 ]};

interface nsIDOMEventListener : nsISupports {

  static const char[] IID_STR = NS_IDOMEVENTLISTENER_IID_STR;
  static const nsIID IID = NS_IDOMEVENTLISTENER_IID;

extern(System):
  nsresult HandleEvent(nsIDOMEvent event);
}