/* Copyright (C) 2000 Andy Sherwood (enigmax@home.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // Folders.cpp : Implementation of CFolders #include "stdafx.h" #include "Rio500Remix.h" #include "Folders.h" ///////////////////////////////////////////////////////////////////////////// // CFolders //********************************************************************************************* // Description: Boiler-plate code from wizard // // Returns: S_OK Extended error information is available for the specified interface // S_FALSE No extended error information for the specified interface // //********************************************************************************************* STDMETHODIMP CFolders::InterfaceSupportsErrorInfo( REFIID riid) // [i] Interface to check for extended error information { static const IID* arr[] = { &IID_IFolders }; for (int i=0; i < sizeof(arr) / sizeof(arr[0]); i++) { // if (::InlineIsEqualGUID(*arr[i],riid)) return S_OK; } return S_FALSE; }