tbogard%aol.net 68d8d25e6d Implemented nsIWinEvent and nsIWinEventFilter to allow picking the windows platform structure apart rather than grabbing as a blob.
git-svn-id: svn://10.0.0.236/trunk@47745 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-16 06:43:26 +00:00

18 lines
450 B
Plaintext

#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;
};