Commit 2a332f4e authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

sapi: Add a stub dll.

parent 5f3e6b04
......@@ -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)
......
MODULE = sapi.dll
IMPORTS = uuid ole32 user32 advapi32
C_SRCS = \
main.c
/*
* 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;
}
@ 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment