mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-21 17:09:06 -07:00
sapi: Add a stub dll.
Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5f3e6b0433
commit
2a332f4e5a
6 changed files with 65 additions and 0 deletions
2
configure
vendored
2
configure
vendored
|
@ -1425,6 +1425,7 @@ enable_rstrtmgr
|
|||
enable_rtutils
|
||||
enable_samlib
|
||||
enable_sane_ds
|
||||
enable_sapi
|
||||
enable_scarddlg
|
||||
enable_sccbase
|
||||
enable_schannel
|
||||
|
@ -18665,6 +18666,7 @@ wine_fn_config_dll rstrtmgr enable_rstrtmgr
|
|||
wine_fn_config_dll rtutils enable_rtutils implib
|
||||
wine_fn_config_dll samlib enable_samlib
|
||||
wine_fn_config_dll sane.ds enable_sane_ds clean
|
||||
wine_fn_config_dll sapi enable_sapi
|
||||
wine_fn_config_dll scarddlg enable_scarddlg
|
||||
wine_fn_config_dll sccbase enable_sccbase
|
||||
wine_fn_config_dll schannel enable_schannel
|
||||
|
|
|
@ -3447,6 +3447,7 @@ WINE_CONFIG_DLL(rstrtmgr)
|
|||
WINE_CONFIG_DLL(rtutils,,[implib])
|
||||
WINE_CONFIG_DLL(samlib)
|
||||
WINE_CONFIG_DLL(sane.ds,,[clean])
|
||||
WINE_CONFIG_DLL(sapi)
|
||||
WINE_CONFIG_DLL(scarddlg)
|
||||
WINE_CONFIG_DLL(sccbase)
|
||||
WINE_CONFIG_DLL(schannel)
|
||||
|
|
5
dlls/sapi/Makefile.in
Normal file
5
dlls/sapi/Makefile.in
Normal file
|
@ -0,0 +1,5 @@
|
|||
MODULE = sapi.dll
|
||||
IMPORTS = uuid ole32 user32 advapi32
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
51
dlls/sapi/main.c
Normal file
51
dlls/sapi/main.c
Normal file
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
* Speech API (SAPI) main file.
|
||||
*
|
||||
* Copyright (C) 2017 Huw Davies
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <stdarg.h>
|
||||
|
||||
#define COBJMACROS
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(sapi);
|
||||
|
||||
BOOL WINAPI DllMain( HINSTANCE dll, DWORD reason, LPVOID reserved )
|
||||
{
|
||||
switch (reason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls( dll );
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* DllCanUnloadNow
|
||||
*/
|
||||
HRESULT WINAPI DllCanUnloadNow( void )
|
||||
{
|
||||
TRACE( "()\n" );
|
||||
return S_FALSE;
|
||||
}
|
4
dlls/sapi/sapi.spec
Normal file
4
dlls/sapi/sapi.spec
Normal file
|
@ -0,0 +1,4 @@
|
|||
@ stdcall -private DllCanUnloadNow()
|
||||
#@ stdcall -private DllGetClassObject(ptr ptr ptr)
|
||||
#@ stdcall -private DllRegisterServer()
|
||||
#@ stdcall -private DllUnregisterServer()
|
|
@ -2534,6 +2534,7 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
|
|||
; create some directories first
|
||||
11,mui,
|
||||
11,gecko\plugin,npmshtml.dll
|
||||
11,Speech\Common,sapi.dll
|
||||
11,wbem,mofcomp.exe
|
||||
10,syswow64,stdole2.tlb
|
||||
11,,iexplore.exe
|
||||
|
@ -2604,6 +2605,7 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
|
|||
11,,msxml6.dll
|
||||
11,,shdocvw.dll
|
||||
11,gecko\plugin,npmshtml.dll
|
||||
11,Speech\Common,sapi.dll
|
||||
11,wbem,mofcomp.exe
|
||||
11,wbem,wbemdisp.dll
|
||||
11,wbem,wbemprox.dll
|
||||
|
|
Loading…
Reference in a new issue