83 lines
2.3 KiB
C
83 lines
2.3 KiB
C
|
/*
|
||
|
* Copyright 2019 Alistair Leslie-Hughes
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||
|
*/
|
||
|
#define COBJMACROS
|
||
|
|
||
|
#include "ole2.h"
|
||
|
#include "rpcproxy.h"
|
||
|
|
||
|
#include "wine/debug.h"
|
||
|
|
||
|
WINE_DEFAULT_DEBUG_CHANNEL(dsdmo);
|
||
|
|
||
|
static HINSTANCE dsdmo_instance;
|
||
|
|
||
|
/******************************************************************
|
||
|
* DllMain
|
||
|
*/
|
||
|
BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, void *reserved)
|
||
|
{
|
||
|
TRACE("(%p %d %p)\n", inst, reason, reserved);
|
||
|
|
||
|
switch(reason)
|
||
|
{
|
||
|
case DLL_WINE_PREATTACH:
|
||
|
return FALSE; /* prefer native version */
|
||
|
case DLL_PROCESS_ATTACH:
|
||
|
dsdmo_instance = inst;
|
||
|
DisableThreadLibraryCalls(dsdmo_instance);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllGetClassObject
|
||
|
*/
|
||
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
||
|
{
|
||
|
FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
|
||
|
return CLASS_E_CLASSNOTAVAILABLE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllCanUnloadNow
|
||
|
*/
|
||
|
HRESULT WINAPI DllCanUnloadNow(void)
|
||
|
{
|
||
|
return S_FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllRegisterServer
|
||
|
*/
|
||
|
HRESULT WINAPI DllRegisterServer(void)
|
||
|
{
|
||
|
TRACE("()\n");
|
||
|
return __wine_register_resources(dsdmo_instance);
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* DllUnregisterServer
|
||
|
*/
|
||
|
HRESULT WINAPI DllUnregisterServer(void)
|
||
|
{
|
||
|
TRACE("()\n");
|
||
|
return __wine_unregister_resources(dsdmo_instance);
|
||
|
}
|