dsdmo: Added dll.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4907f2626c
commit
43a4439068
|
@ -1257,6 +1257,7 @@ enable_dpnlobby
|
||||||
enable_dpvoice
|
enable_dpvoice
|
||||||
enable_dpwsockx
|
enable_dpwsockx
|
||||||
enable_drmclien
|
enable_drmclien
|
||||||
|
enable_dsdmo
|
||||||
enable_dsound
|
enable_dsound
|
||||||
enable_dsquery
|
enable_dsquery
|
||||||
enable_dssenh
|
enable_dssenh
|
||||||
|
@ -20384,6 +20385,7 @@ wine_fn_config_makefile dlls/dpvoice enable_dpvoice
|
||||||
wine_fn_config_makefile dlls/dpvoice/tests enable_tests
|
wine_fn_config_makefile dlls/dpvoice/tests enable_tests
|
||||||
wine_fn_config_makefile dlls/dpwsockx enable_dpwsockx
|
wine_fn_config_makefile dlls/dpwsockx enable_dpwsockx
|
||||||
wine_fn_config_makefile dlls/drmclien enable_drmclien
|
wine_fn_config_makefile dlls/drmclien enable_drmclien
|
||||||
|
wine_fn_config_makefile dlls/dsdmo enable_dsdmo
|
||||||
wine_fn_config_makefile dlls/dsound enable_dsound
|
wine_fn_config_makefile dlls/dsound enable_dsound
|
||||||
wine_fn_config_makefile dlls/dsound/tests enable_tests
|
wine_fn_config_makefile dlls/dsound/tests enable_tests
|
||||||
wine_fn_config_makefile dlls/dsquery enable_dsquery
|
wine_fn_config_makefile dlls/dsquery enable_dsquery
|
||||||
|
|
|
@ -3237,6 +3237,7 @@ WINE_CONFIG_MAKEFILE(dlls/dpvoice)
|
||||||
WINE_CONFIG_MAKEFILE(dlls/dpvoice/tests)
|
WINE_CONFIG_MAKEFILE(dlls/dpvoice/tests)
|
||||||
WINE_CONFIG_MAKEFILE(dlls/dpwsockx)
|
WINE_CONFIG_MAKEFILE(dlls/dpwsockx)
|
||||||
WINE_CONFIG_MAKEFILE(dlls/drmclien)
|
WINE_CONFIG_MAKEFILE(dlls/drmclien)
|
||||||
|
WINE_CONFIG_MAKEFILE(dlls/dsdmo)
|
||||||
WINE_CONFIG_MAKEFILE(dlls/dsound)
|
WINE_CONFIG_MAKEFILE(dlls/dsound)
|
||||||
WINE_CONFIG_MAKEFILE(dlls/dsound/tests)
|
WINE_CONFIG_MAKEFILE(dlls/dsound/tests)
|
||||||
WINE_CONFIG_MAKEFILE(dlls/dsquery)
|
WINE_CONFIG_MAKEFILE(dlls/dsquery)
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
MODULE = dsdmo.dll
|
||||||
|
|
||||||
|
EXTRADLLFLAGS = -mno-cygwin
|
||||||
|
|
||||||
|
C_SRCS = \
|
||||||
|
main.c
|
|
@ -0,0 +1,4 @@
|
||||||
|
@ stdcall -private DllCanUnloadNow()
|
||||||
|
@ stdcall -private DllGetClassObject(ptr ptr ptr)
|
||||||
|
@ stdcall -private DllRegisterServer()
|
||||||
|
@ stdcall -private DllUnregisterServer()
|
|
@ -0,0 +1,82 @@
|
||||||
|
/*
|
||||||
|
* 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);
|
||||||
|
}
|
Loading…
Reference in New Issue