/*1* Copyright 2018 Andrey Gusev2*3* This library is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* This library is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with this library; if not, write to the Free Software15* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA16*/1718#include <stdarg.h>19#include <string.h>2021#define COBJMACROS2223#include "windef.h"24#include "winbase.h"25#include "winuser.h"26#include "winreg.h"2728#include "ole2.h"29#include "rpcproxy.h"3031#include "wine/debug.h"3233WINE_DEFAULT_DEBUG_CHANNEL(cdosys);3435HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **obj)36{37FIXME("(%s, %s, %p) stub!\n", debugstr_guid(rclsid), debugstr_guid(riid), obj);3839return CLASS_E_CLASSNOTAVAILABLE;40}414243