nsIDOMNSEvent.idl 602 B

12345678910111213141516171819202122
  1. /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "domstubs.idl"
  6. %{C++
  7. #ifdef ERROR
  8. #undef ERROR
  9. #endif
  10. %}
  11. [uuid(2580b4a2-6d85-4ca6-9be2-98f3406ad296)]
  12. interface nsIDOMNSEvent : nsISupports
  13. {
  14. const long ALT_MASK = 0x00000001;
  15. const long CONTROL_MASK = 0x00000002;
  16. const long SHIFT_MASK = 0x00000004;
  17. const long META_MASK = 0x00000008;
  18. };