Bug 1842773 - Part 19: Add guard instruction for fixed-length typed arrays. r=sfink...
[gecko.git] / js / xpconnect / src / XPCModule.h
blobd539750753151d4b41375d2bacce1839f55079d7
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "xpcprivate.h"
8 #include "mozJSSubScriptLoader.h"
10 /* Module implementation for the xpconnect library. */
12 #define XPCVARIANT_CONTRACTID "@mozilla.org/xpcvariant;1"
14 // {FE4F7592-C1FC-4662-AC83-538841318803}
15 #define SCRIPTABLE_INTERFACES_CID \
16 { \
17 0xfe4f7592, 0xc1fc, 0x4662, { \
18 0xac, 0x83, 0x53, 0x88, 0x41, 0x31, 0x88, 0x3 \
19 } \
22 #define MOZJSSUBSCRIPTLOADER_CONTRACTID "@mozilla.org/moz/jssubscript-loader;1"
24 nsresult xpcModuleCtor();
25 void xpcModuleDtor();