diff --git a/.gitignore b/.gitignore index 772db5f96fb..21f4f569b0f 100644 --- a/.gitignore +++ b/.gitignore @@ -217,6 +217,7 @@ dlls/dplayx/tests/*.ok dlls/dplayx/tests/dplayx_crosstest.exe dlls/dplayx/tests/testlist.c dlls/dplayx/version.res +dlls/dpnaddr/version.res dlls/dpnet/libdpnet.def dlls/dpnet/version.res dlls/dpnhpast/version.res diff --git a/Makefile.in b/Makefile.in index d4e743a3d25..f488e7d6556 100644 --- a/Makefile.in +++ b/Makefile.in @@ -217,6 +217,7 @@ ALL_MAKEFILES = \ dlls/dplay/Makefile \ dlls/dplayx/Makefile \ dlls/dplayx/tests/Makefile \ + dlls/dpnaddr/Makefile \ dlls/dpnet/Makefile \ dlls/dpnhpast/Makefile \ dlls/dsound/Makefile \ @@ -552,6 +553,7 @@ dlls/dnsapi/tests/Makefile: dlls/dnsapi/tests/Makefile.in dlls/Maketest.rules dlls/dplay/Makefile: dlls/dplay/Makefile.in dlls/Makedll.rules dlls/dplayx/Makefile: dlls/dplayx/Makefile.in dlls/Makedll.rules dlls/dplayx/tests/Makefile: dlls/dplayx/tests/Makefile.in dlls/Maketest.rules +dlls/dpnaddr/Makefile: dlls/dpnaddr/Makefile.in dlls/Makedll.rules dlls/dpnet/Makefile: dlls/dpnet/Makefile.in dlls/Makedll.rules dlls/dpnhpast/Makefile: dlls/dpnhpast/Makefile.in dlls/Makedll.rules dlls/dsound/Makefile: dlls/dsound/Makefile.in dlls/Makedll.rules diff --git a/configure b/configure index 549688a42f9..319be49eef0 100755 --- a/configure +++ b/configure @@ -20565,6 +20565,8 @@ ac_config_files="$ac_config_files dlls/dplayx/Makefile" ac_config_files="$ac_config_files dlls/dplayx/tests/Makefile" +ac_config_files="$ac_config_files dlls/dpnaddr/Makefile" + ac_config_files="$ac_config_files dlls/dpnet/Makefile" ac_config_files="$ac_config_files dlls/dpnhpast/Makefile" @@ -21714,6 +21716,7 @@ do "dlls/dplay/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dplay/Makefile" ;; "dlls/dplayx/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dplayx/Makefile" ;; "dlls/dplayx/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dplayx/tests/Makefile" ;; + "dlls/dpnaddr/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnaddr/Makefile" ;; "dlls/dpnet/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnet/Makefile" ;; "dlls/dpnhpast/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnhpast/Makefile" ;; "dlls/dsound/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dsound/Makefile" ;; diff --git a/configure.ac b/configure.ac index 59257fdc328..7ad14c00384 100644 --- a/configure.ac +++ b/configure.ac @@ -1587,6 +1587,7 @@ AC_CONFIG_FILES([dlls/dnsapi/tests/Makefile]) AC_CONFIG_FILES([dlls/dplay/Makefile]) AC_CONFIG_FILES([dlls/dplayx/Makefile]) AC_CONFIG_FILES([dlls/dplayx/tests/Makefile]) +AC_CONFIG_FILES([dlls/dpnaddr/Makefile]) AC_CONFIG_FILES([dlls/dpnet/Makefile]) AC_CONFIG_FILES([dlls/dpnhpast/Makefile]) AC_CONFIG_FILES([dlls/dsound/Makefile]) diff --git a/dlls/Makefile.in b/dlls/Makefile.in index 4c47aaef9fb..b88cde38717 100644 --- a/dlls/Makefile.in +++ b/dlls/Makefile.in @@ -64,6 +64,7 @@ BASEDIRS = \ dnsapi \ dplay \ dplayx \ + dpnaddr \ dpnet \ dpnhpast \ dsound \ diff --git a/dlls/dpnaddr/Makefile.in b/dlls/dpnaddr/Makefile.in new file mode 100644 index 00000000000..7bd5901afb0 --- /dev/null +++ b/dlls/dpnaddr/Makefile.in @@ -0,0 +1,12 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = dpnaddr.dll +IMPORTS = dpnet kernel32 + +RC_SRCS = version.rc + +@MAKE_DLL_RULES@ + +@DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/dlls/dpnaddr/dpnaddr.spec b/dlls/dpnaddr/dpnaddr.spec new file mode 100644 index 00000000000..e271f57468b --- /dev/null +++ b/dlls/dpnaddr/dpnaddr.spec @@ -0,0 +1 @@ +@ stdcall DirectPlay8AddressCreate(ptr ptr ptr) dpnet.DirectPlay8Create diff --git a/dlls/dpnaddr/version.rc b/dlls/dpnaddr/version.rc new file mode 100644 index 00000000000..b66e78563a3 --- /dev/null +++ b/dlls/dpnaddr/version.rc @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2004 Christian Costa + * + * 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 DpnAddr dll" +#define WINE_FILENAME_STR "dpnadr.dll" +#define WINE_FILEVERSION 5,3,2600,2180 +#define WINE_FILEVERSION_STR "5.3.2600.2180" +#define WINE_PRODUCTVERSION 5,3,2600,2180 +#define WINE_PRODUCTVERSION_STR "5.3.2600.2180" + +#include "wine/wine_common_ver.rc"