nsIOSFileConstantsService.idl 864 B

12345678910111213141516171819202122232425262728
  1. /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
  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 "nsISupports.idl"
  6. [scriptable, uuid(d6dd239f-34d6-4b34-baa1-f69ab4a20bc4)]
  7. interface nsIOSFileConstantsService: nsISupports
  8. {
  9. /**
  10. * Inject module OS.Constants in the environment.
  11. *
  12. * This method must be called only from the main thread.
  13. * Method is idempotent.
  14. */
  15. [implicit_jscontext]
  16. void init();
  17. };
  18. %{ C++
  19. // {4BBE1B96-8956-457F-A03F-9C27435F2AFA}
  20. #define OSFILECONSTANTSSERVICE_CID {0x4BBE1B96,0x8956,0x457F,{0xA0,0x3F,0x9C,0x27,0x43,0x5F,0x2A,0xFA}}
  21. #define OSFILECONSTANTSSERVICE_CONTRACTID "@mozilla.org/net/osfileconstantsservice;1"
  22. %}