dpvoice: New stub dll.
This commit is contained in:
parent
86af1acff4
commit
7cd7c069ad
|
@ -1017,6 +1017,7 @@ enable_dpnaddr
|
|||
enable_dpnet
|
||||
enable_dpnhpast
|
||||
enable_dpnlobby
|
||||
enable_dpvoice
|
||||
enable_dpwsockx
|
||||
enable_drmclien
|
||||
enable_dsound
|
||||
|
@ -16949,6 +16950,7 @@ wine_fn_config_dll dpnet enable_dpnet clean,implib
|
|||
wine_fn_config_test dlls/dpnet/tests dpnet_test
|
||||
wine_fn_config_dll dpnhpast enable_dpnhpast
|
||||
wine_fn_config_dll dpnlobby enable_dpnlobby
|
||||
wine_fn_config_dll dpvoice enable_dpvoice
|
||||
wine_fn_config_dll dpwsockx enable_dpwsockx
|
||||
wine_fn_config_dll drmclien enable_drmclien
|
||||
wine_fn_config_dll dsound enable_dsound clean,implib
|
||||
|
|
|
@ -2859,6 +2859,7 @@ WINE_CONFIG_DLL(dpnet,,[clean,implib])
|
|||
WINE_CONFIG_TEST(dlls/dpnet/tests)
|
||||
WINE_CONFIG_DLL(dpnhpast)
|
||||
WINE_CONFIG_DLL(dpnlobby)
|
||||
WINE_CONFIG_DLL(dpvoice)
|
||||
WINE_CONFIG_DLL(dpwsockx)
|
||||
WINE_CONFIG_DLL(drmclien)
|
||||
WINE_CONFIG_DLL(dsound,,[clean,implib])
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
MODULE = dpvoice.dll
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
||||
RC_SRCS = version.rc
|
|
@ -0,0 +1,6 @@
|
|||
1 stdcall DirectPlayVoiceCreate(ptr ptr)
|
||||
|
||||
@ stdcall -private DllCanUnloadNow()
|
||||
@ stdcall -private DllGetClassObject(ptr ptr ptr)
|
||||
@ stdcall -private DllRegisterServer()
|
||||
@ stdcall -private DllUnregisterServer()
|
|
@ -0,0 +1,79 @@
|
|||
/*
|
||||
* DirectPlay Voice
|
||||
*
|
||||
* Copyright (C) 2014 Alistair Leslie-Hughes
|
||||
*
|
||||
* This program 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 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "objbase.h"
|
||||
#include "rpcproxy.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(dpvoice);
|
||||
|
||||
static HINSTANCE DPVOICE_hInstance;
|
||||
|
||||
HRESULT WINAPI DirectPlayVoiceCreate(LPCGUID pIID, PVOID *ppvInterface)
|
||||
{
|
||||
FIXME("(%p, %p) stub\n", pIID, ppvInterface);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||
{
|
||||
TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
|
||||
|
||||
DPVOICE_hInstance = hinstDLL;
|
||||
|
||||
switch (fdwReason)
|
||||
{
|
||||
case DLL_WINE_PREATTACH:
|
||||
return FALSE; /* prefer native version */
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls(hinstDLL);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
||||
{
|
||||
FIXME(":stub\n");
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
HRESULT WINAPI DllCanUnloadNow(void)
|
||||
{
|
||||
return S_FALSE;
|
||||
}
|
||||
|
||||
HRESULT WINAPI DllRegisterServer(void)
|
||||
{
|
||||
return __wine_register_resources( DPVOICE_hInstance );
|
||||
}
|
||||
|
||||
HRESULT WINAPI DllUnregisterServer(void)
|
||||
{
|
||||
return __wine_unregister_resources( DPVOICE_hInstance );
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (C) 2014 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 WINE_FILEDESCRIPTION_STR "Wine DirectPlay Voice"
|
||||
#define WINE_FILENAME_STR "dpvoice.dll"
|
||||
#define WINE_FILEVERSION 5,3,2600,5512
|
||||
#define WINE_FILEVERSION_STR "5.3.2600.5512"
|
||||
#define WINE_PRODUCTVERSION 5,3,2600,5512
|
||||
#define WINE_PRODUCTVERSION_STR "5.3"
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
Loading…
Reference in New Issue