#include "nsISupports.idl" #include "nsIEvent.idl" /** * The nsIWinEvent defines what a message looks like on the Windows Platform. */ [scriptable, uuid(2EFB5005-4508-11d3-AEDA-00A024FFC08C)] interface nsIWinEvent : nsIEvent { attribute voidStar hwnd; attribute unsigned long message; attribute unsigned long wParam; attribute unsigned long lParam; attribute unsigned long time; attribute long pointX; attribute long pointY; };