MCPcopy Create free account
hub / github.com/SpecialKO/SpecialK / QueryInterface

Method QueryInterface

src/log.cpp:625–642  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

623}
624
625__declspec(nothrow)
626HRESULT
627iSK_Logger::QueryInterface (THIS_ REFIID riid, void** ppvObj) noexcept
628{
629 if (ppvObj == nullptr)
630 return E_POINTER;
631
632 if (IsEqualGUID (riid, IID_SK_Logger) == 1)
633 {
634 AddRef ();
635
636 *ppvObj = this;
637
638 return S_OK;
639 }
640
641 return E_NOINTERFACE;
642}
643
644__declspec(nothrow)
645ULONG

Callers 5

SetWICFactoryMethod · 0.45
CaptureFunction · 0.45
CaptureTextureMethod · 0.45
SK_SafeQueryInterfaceFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected