2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2005-11-11 17:36:26 +03:00
|
|
|
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
|
|
|
|
nsresult NS_FASTCALL
|
2014-06-27 05:35:39 +04:00
|
|
|
NS_TableDrivenQI(void* aThis, REFNSIID aIID, void** aInstancePtr,
|
|
|
|
const QITableEntry* aEntries)
|
2005-11-11 17:36:26 +03:00
|
|
|
{
|
2013-12-14 04:17:18 +04:00
|
|
|
do {
|
2014-06-27 05:35:39 +04:00
|
|
|
if (aIID.Equals(*aEntries->iid)) {
|
|
|
|
nsISupports* r = reinterpret_cast<nsISupports*>(
|
|
|
|
reinterpret_cast<char*>(aThis) + aEntries->offset);
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_ADDREF(r);
|
|
|
|
*aInstancePtr = r;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-06-27 05:35:39 +04:00
|
|
|
++aEntries;
|
|
|
|
} while (aEntries->iid);
|
2005-11-11 17:36:26 +03:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
*aInstancePtr = nullptr;
|
2005-11-11 17:36:26 +03:00
|
|
|
return NS_ERROR_NO_INTERFACE;
|
|
|
|
}
|