Luis Carlos Busquets Pérez : dpnaddr: Added dll that just forwards to dpnet.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Mar 7 07:16:44 CST 2007


Module: wine
Branch: master
Commit: 8caf078754b0a0944fce632ee66ea69004454dec
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8caf078754b0a0944fce632ee66ea69004454dec

Author: Luis Carlos Busquets Pérez <luis.busquets at ilidium.com>
Date:   Wed Mar  7 09:41:41 2007 +0100

dpnaddr: Added dll that just forwards to dpnet.

---

 .gitignore                |    1 +
 Makefile.in               |    2 ++
 configure                 |    3 +++
 configure.ac              |    1 +
 dlls/Makefile.in          |    1 +
 dlls/dpnaddr/Makefile.in  |   12 ++++++++++++
 dlls/dpnaddr/dpnaddr.spec |    1 +
 dlls/dpnaddr/version.rc   |   26 ++++++++++++++++++++++++++
 8 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index 772db5f..21f4f56 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 d4e743a..f488e7d 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 549688a..319be49 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 59257fd..7ad14c0 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 4c47aae..b88cde3 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 0000000..7bd5901
--- /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
+
+ at MAKE_DLL_RULES@
+
+ at 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 0000000..e271f57
--- /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 0000000..b66e785
--- /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"




More information about the wine-cvs mailing list