From: Austin English Subject: [PATCH 4/5] dpmodemx: add stub dll Message-Id: <20201029081003.24791-4-austinenglish@gmail.com> Date: Thu, 29 Oct 2020 03:10:02 -0500 In-Reply-To: <20201029081003.24791-1-austinenglish@gmail.com> References: <20201029081003.24791-1-austinenglish@gmail.com> Signed-off-by: Austin English --- configure.ac | 1 + dlls/dpmodemx/Makefile.in | 8 +++++++ dlls/dpmodemx/dpmodemx.spec | 1 + dlls/dpmodemx/dpmodemx_main.c | 42 +++++++++++++++++++++++++++++++++++ dlls/dpmodemx/version.rc | 26 ++++++++++++++++++++++ 5 files changed, 78 insertions(+) create mode 100644 dlls/dpmodemx/Makefile.in create mode 100644 dlls/dpmodemx/dpmodemx.spec create mode 100644 dlls/dpmodemx/dpmodemx_main.c create mode 100644 dlls/dpmodemx/version.rc diff --git a/configure.ac b/configure.ac index 05f076a7f19..0d597e18b40 100644 --- a/configure.ac +++ b/configure.ac @@ -3250,6 +3250,7 @@ WINE_CONFIG_MAKEFILE(dlls/dnsapi/tests) WINE_CONFIG_MAKEFILE(dlls/dplay) WINE_CONFIG_MAKEFILE(dlls/dplayx) WINE_CONFIG_MAKEFILE(dlls/dplayx/tests) +WINE_CONFIG_MAKEFILE(dlls/dpmodemx) WINE_CONFIG_MAKEFILE(dlls/dpnaddr) WINE_CONFIG_MAKEFILE(dlls/dpnet) WINE_CONFIG_MAKEFILE(dlls/dpnet/tests) diff --git a/dlls/dpmodemx/Makefile.in b/dlls/dpmodemx/Makefile.in new file mode 100644 index 00000000000..e074ca33164 --- /dev/null +++ b/dlls/dpmodemx/Makefile.in @@ -0,0 +1,8 @@ +MODULE = dpmodemx.dll + +EXTRADLLFLAGS = -mno-cygwin + +C_SRCS = \ + dpmodemx_main.c + +RC_SRCS = version.rc diff --git a/dlls/dpmodemx/dpmodemx.spec b/dlls/dpmodemx/dpmodemx.spec new file mode 100644 index 00000000000..14fb05053a8 --- /dev/null +++ b/dlls/dpmodemx/dpmodemx.spec @@ -0,0 +1 @@ +@ stub SPInit \ No newline at end of file diff --git a/dlls/dpmodemx/dpmodemx_main.c b/dlls/dpmodemx/dpmodemx_main.c new file mode 100644 index 00000000000..f5d7a8340ca --- /dev/null +++ b/dlls/dpmodemx/dpmodemx_main.c @@ -0,0 +1,42 @@ +/* + * + * Copyright 2020 Austin English + * + * 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 + +#include "windef.h" +#include "winbase.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(dpmodemx); + +BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void *reserved) +{ + TRACE("(%p, %u, %p)\n", instance, reason, reserved); + + switch (reason) + { + case DLL_WINE_PREATTACH: + return FALSE; /* prefer native version */ + case DLL_PROCESS_ATTACH: + DisableThreadLibraryCalls(instance); + break; + } + + return TRUE; +} diff --git a/dlls/dpmodemx/version.rc b/dlls/dpmodemx/version.rc new file mode 100644 index 00000000000..b0c644aed83 --- /dev/null +++ b/dlls/dpmodemx/version.rc @@ -0,0 +1,26 @@ +/* + * Copyright 2020 Austin English + * + * 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 dpmodemx" +#define WINE_FILENAME_STR "dpmodemx.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.2600.5512" + +#include "wine/wine_common_ver.rc" -- 2.28.0