msado15: Add typelib.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8aaa218b47
commit
7353f6f1fe
|
@ -1409,6 +1409,7 @@ enable_mpr
|
|||
enable_mprapi
|
||||
enable_msacm32_drv
|
||||
enable_msacm32
|
||||
enable_msado15
|
||||
enable_msadp32_acm
|
||||
enable_msasn1
|
||||
enable_mscat32
|
||||
|
@ -20583,6 +20584,7 @@ wine_fn_config_makefile dlls/msacm.dll16 enable_win16
|
|||
wine_fn_config_makefile dlls/msacm32.drv enable_msacm32_drv
|
||||
wine_fn_config_makefile dlls/msacm32 enable_msacm32
|
||||
wine_fn_config_makefile dlls/msacm32/tests enable_tests
|
||||
wine_fn_config_makefile dlls/msado15 enable_msado15
|
||||
wine_fn_config_makefile dlls/msadp32.acm enable_msadp32_acm
|
||||
wine_fn_config_makefile dlls/msasn1 enable_msasn1
|
||||
wine_fn_config_makefile dlls/mscat32 enable_mscat32
|
||||
|
|
|
@ -3438,6 +3438,7 @@ WINE_CONFIG_MAKEFILE(dlls/msacm.dll16,enable_win16)
|
|||
WINE_CONFIG_MAKEFILE(dlls/msacm32.drv)
|
||||
WINE_CONFIG_MAKEFILE(dlls/msacm32)
|
||||
WINE_CONFIG_MAKEFILE(dlls/msacm32/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/msado15)
|
||||
WINE_CONFIG_MAKEFILE(dlls/msadp32.acm)
|
||||
WINE_CONFIG_MAKEFILE(dlls/msasn1)
|
||||
WINE_CONFIG_MAKEFILE(dlls/mscat32)
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
MODULE = msado15.dll
|
||||
|
||||
EXTRADLLFLAGS = -mno-cygwin
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
||||
IDL_SRCS = msado15_tlb.idl
|
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
* Copyright 2019 Hans Leidekker for CodeWeavers
|
||||
*
|
||||
* 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 <stdarg.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "objbase.h"
|
||||
#include "rpcproxy.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
static HINSTANCE hinstance;
|
||||
|
||||
BOOL WINAPI DllMain( HINSTANCE dll, DWORD reason, LPVOID reserved )
|
||||
{
|
||||
switch (reason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
hinstance = dll;
|
||||
DisableThreadLibraryCalls( dll );
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DllRegisterServer
|
||||
*/
|
||||
HRESULT WINAPI DllRegisterServer( void )
|
||||
{
|
||||
return __wine_register_resources( hinstance );
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DllUnregisterServer
|
||||
*/
|
||||
HRESULT WINAPI DllUnregisterServer( void )
|
||||
{
|
||||
return __wine_unregister_resources( hinstance );
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
@ stub DllCanUnloadNow
|
||||
@ stub DllGetClassObject
|
||||
@ stdcall -private DllRegisterServer()
|
||||
@ stdcall -private DllUnregisterServer()
|
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* Copyright 2019 Hans Leidekker for CodeWeavers
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#pragma makedep regtypelib
|
||||
|
||||
#include "msado15_backcompat.idl"
|
|
@ -394,6 +394,7 @@ SOURCES = \
|
|||
msacm.h \
|
||||
msacmdlg.h \
|
||||
msacmdrv.h \
|
||||
msado15_backcompat.idl \
|
||||
msasn1.h \
|
||||
mscat.h \
|
||||
mscoree.idl \
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue