mccabe%netscape.com a1fefe68af Adding [noscript], to get past my recently-added xpidl compiletime error. Looks like I missed a file.
git-svn-id: svn://10.0.0.236/trunk@63357 18797224-902f-48f8-a5cc-f745e15eee43
2000-03-18 02:01:19 +00:00

19 lines
462 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
{
[noscript] 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;
};