dpnhupnp: Add stub dll.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2021-06-12 09:05:54 +10:00 committed by Alexandre Julliard
parent 79c102d6be
commit 825ebd4e58
5 changed files with 41 additions and 0 deletions

2
configure vendored
View File

@ -1283,6 +1283,7 @@ enable_dplayx
enable_dpnaddr
enable_dpnet
enable_dpnhpast
enable_dpnhupnp
enable_dpnlobby
enable_dpvoice
enable_dpwsockx
@ -20503,6 +20504,7 @@ wine_fn_config_makefile dlls/dpnaddr enable_dpnaddr
wine_fn_config_makefile dlls/dpnet enable_dpnet
wine_fn_config_makefile dlls/dpnet/tests enable_tests
wine_fn_config_makefile dlls/dpnhpast enable_dpnhpast
wine_fn_config_makefile dlls/dpnhupnp enable_dpnhupnp
wine_fn_config_makefile dlls/dpnlobby enable_dpnlobby
wine_fn_config_makefile dlls/dpvoice enable_dpvoice
wine_fn_config_makefile dlls/dpvoice/tests enable_tests

View File

@ -3174,6 +3174,7 @@ WINE_CONFIG_MAKEFILE(dlls/dpnaddr)
WINE_CONFIG_MAKEFILE(dlls/dpnet)
WINE_CONFIG_MAKEFILE(dlls/dpnet/tests)
WINE_CONFIG_MAKEFILE(dlls/dpnhpast)
WINE_CONFIG_MAKEFILE(dlls/dpnhupnp)
WINE_CONFIG_MAKEFILE(dlls/dpnlobby)
WINE_CONFIG_MAKEFILE(dlls/dpvoice)
WINE_CONFIG_MAKEFILE(dlls/dpvoice/tests)

View File

@ -0,0 +1,6 @@
MODULE = dpnhupnp.dll
EXTRADLLFLAGS = -Wb,--prefer-native
RC_SRCS = version.rc

View File

@ -0,0 +1,6 @@
@ stub DirectPlayNATHelpCreate
@ stdcall -private DllCanUnloadNow()
@ stub DllGetClassObject
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()

26
dlls/dpnhupnp/version.rc Normal file
View File

@ -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 dpnhupnp"
#define WINE_FILENAME_STR "dpnhupnp.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"