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
|
2013-12-14 04:50:02 +04:00
|
|
|
NS_TableDrivenQI(void* aThis, REFNSIID aIID, void **aInstancePtr,
|
|
|
|
const QITableEntry* entries)
|
2005-11-11 17:36:26 +03:00
|
|
|
{
|
2013-12-14 04:17:18 +04:00
|
|
|
do {
|
2005-11-11 17:36:26 +03:00
|
|
|
if (aIID.Equals(*entries->iid)) {
|
|
|
|
nsISupports* r =
|
2007-07-08 11:08:04 +04:00
|
|
|
reinterpret_cast<nsISupports*>
|
|
|
|
(reinterpret_cast<char*>(aThis) + entries->offset);
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_ADDREF(r);
|
|
|
|
*aInstancePtr = r;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
++entries;
|
2013-12-14 04:17:18 +04:00
|
|
|
} while (entries->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;
|
|
|
|
}
|