From: Anton Baskanov baskanov@gmail.com
Signed-off-by: Anton Baskanov baskanov@gmail.com --- configure | 2 ++ configure.ac | 1 + dlls/l3codecx.ax/Makefile.in | 4 ++++ dlls/l3codecx.ax/l3codecx.ax.spec | 5 +++++ dlls/l3codecx.ax/main.c | 36 +++++++++++++++++++++++++++++++ 5 files changed, 48 insertions(+) create mode 100644 dlls/l3codecx.ax/Makefile.in create mode 100644 dlls/l3codecx.ax/l3codecx.ax.spec create mode 100644 dlls/l3codecx.ax/main.c
diff --git a/configure b/configure index 3088184aade..541dcc931ab 100755 --- a/configure +++ b/configure @@ -1152,6 +1152,7 @@ enable_ksproxy_ax enable_ksuser enable_ktmw32 enable_l3codeca_acm +enable_l3codecx_ax enable_light_msstyles enable_loadperf enable_localspl @@ -21610,6 +21611,7 @@ wine_fn_config_makefile dlls/ksproxy.ax enable_ksproxy_ax wine_fn_config_makefile dlls/ksuser enable_ksuser wine_fn_config_makefile dlls/ktmw32 enable_ktmw32 wine_fn_config_makefile dlls/l3codeca.acm enable_l3codeca_acm +wine_fn_config_makefile dlls/l3codecx.ax enable_l3codecx_ax wine_fn_config_makefile dlls/light.msstyles enable_light_msstyles wine_fn_config_makefile dlls/loadperf enable_loadperf wine_fn_config_makefile dlls/localspl enable_localspl diff --git a/configure.ac b/configure.ac index 1e733962b75..2b53c2c1152 100644 --- a/configure.ac +++ b/configure.ac @@ -2714,6 +2714,7 @@ WINE_CONFIG_MAKEFILE(dlls/ksproxy.ax) WINE_CONFIG_MAKEFILE(dlls/ksuser) WINE_CONFIG_MAKEFILE(dlls/ktmw32) WINE_CONFIG_MAKEFILE(dlls/l3codeca.acm) +WINE_CONFIG_MAKEFILE(dlls/l3codecx.ax) WINE_CONFIG_MAKEFILE(dlls/light.msstyles) WINE_CONFIG_MAKEFILE(dlls/loadperf) WINE_CONFIG_MAKEFILE(dlls/localspl) diff --git a/dlls/l3codecx.ax/Makefile.in b/dlls/l3codecx.ax/Makefile.in new file mode 100644 index 00000000000..110a6d3633a --- /dev/null +++ b/dlls/l3codecx.ax/Makefile.in @@ -0,0 +1,4 @@ +MODULE = l3codecx.ax + +C_SRCS = \ + main.c diff --git a/dlls/l3codecx.ax/l3codecx.ax.spec b/dlls/l3codecx.ax/l3codecx.ax.spec new file mode 100644 index 00000000000..25104058c7d --- /dev/null +++ b/dlls/l3codecx.ax/l3codecx.ax.spec @@ -0,0 +1,5 @@ +@ stub CreateInstance +@ stdcall -private DllCanUnloadNow() +@ stdcall -private DllGetClassObject(ptr ptr ptr) +@ stdcall -private DllRegisterServer() +@ stdcall -private DllUnregisterServer() diff --git a/dlls/l3codecx.ax/main.c b/dlls/l3codecx.ax/main.c new file mode 100644 index 00000000000..068e353e266 --- /dev/null +++ b/dlls/l3codecx.ax/main.c @@ -0,0 +1,36 @@ +/* + * Copyright 2022 Anton Baskanov + * Copyright 2022 RĂ©mi Bernon 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 "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(l3codecx); + +/************************************************************************* + * DllGetClassObject (L3CODECX.AX.@) + */ +HRESULT WINAPI DllGetClassObject( REFCLSID clsid, REFIID iid, void **obj ) +{ + FIXME( "class %s not available\n", debugstr_guid( clsid ) ); + return CLASS_E_CLASSNOTAVAILABLE; +}