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 https://mozilla.org/MPL/2.0/. */
6 
7 #ifndef mozilla_NtLoaderAPI_h
8 #define mozilla_NtLoaderAPI_h
9 
10 #include "mozilla/LoaderAPIInterfaces.h"
11 
12 #if !defined(IMPL_MFBT)
13 #  error "This should only be included from mozglue!"
14 #endif  // !defined(IMPL_MFBT)
15 
16 namespace mozilla {
17 
18 extern "C" MOZ_IMPORT_API nt::LoaderAPI* GetNtLoaderAPI(
19     nt::LoaderObserver* aNewObserver);
20 
21 }  // namespace mozilla
22 
23 #endif  // mozilla_NtLoaderAPI_h
24