gecko-dev/xpcom/glue/standalone/nsGlueLinkingNull.cpp

24 строки
590 B
C++
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 6; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-05-21 15:12:37 +04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2003-03-04 03:35:27 +03:00
#include "nsGlueLinking.h"
2003-03-04 03:35:27 +03:00
#include <stdio.h>
2003-03-04 03:35:27 +03:00
nsresult
XPCOMGlueLoad(const char *xpcomFile, GetFrozenFunctionsFunc *func)
2003-03-04 03:35:27 +03:00
{
fprintf(stderr, "XPCOM glue dynamic linking is not implemented on this platform!");
*func = nullptr;
return NS_ERROR_NOT_IMPLEMENTED;
}
2003-03-04 03:35:27 +03:00
void
XPCOMGlueUnload()
{
}