Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 114 of file enumtuningspaces.cpp.
Referenced by CTuningSpaceContainer::get_EnumTuningSpaces().
{ // construct device control CEnumTuningSpaces * tuningspaces = new CEnumTuningSpaces(); #ifdef MSVIDCTL_TRACE WCHAR Buffer[MAX_PATH]; LPOLESTR lpstr; StringFromCLSID(riid, &lpstr); swprintf(Buffer, L"CEnumTuningSpaces_fnConstructor riid %s pUnknown %p\n", lpstr, pUnknown); OutputDebugStringW(Buffer); #endif if (!tuningspaces) return E_OUTOFMEMORY; if (FAILED(tuningspaces->QueryInterface(riid, ppv))) { /* not supported */ delete tuningspaces; return E_NOINTERFACE; } return NOERROR; }