Luis C. Busquets Pérez : dpnlobby: Add dpnlobby that forwards to dpnet.dll.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Aug 8 08:59:54 CDT 2007


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

Author: Luis C. Busquets Pérez <luis.busquets at ilidium.com>
Date:   Thu Aug  2 11:04:50 2007 +0200

dpnlobby: Add dpnlobby that forwards to dpnet.dll.

---

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

diff --git a/.gitignore b/.gitignore
index 94a13c9..e141f2d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -226,6 +226,7 @@ dlls/dpnaddr/version.res
 dlls/dpnet/libdpnet.def
 dlls/dpnet/version.res
 dlls/dpnhpast/version.res
+dlls/dpnlobby/version.res
 dlls/dsound/libdsound.def
 dlls/dsound/tests/*.ok
 dlls/dsound/tests/dsound_crosstest.exe
diff --git a/Makefile.in b/Makefile.in
index 774249c..4c8b99e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -225,6 +225,7 @@ ALL_MAKEFILES = \
 	dlls/dpnaddr/Makefile \
 	dlls/dpnet/Makefile \
 	dlls/dpnhpast/Makefile \
+	dlls/dpnlobby/Makefile \
 	dlls/dsound/Makefile \
 	dlls/dsound/tests/Makefile \
 	dlls/dswave/Makefile \
@@ -591,6 +592,7 @@ 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/dpnlobby/Makefile: dlls/dpnlobby/Makefile.in dlls/Makedll.rules
 dlls/dsound/Makefile: dlls/dsound/Makefile.in dlls/Makedll.rules
 dlls/dsound/tests/Makefile: dlls/dsound/tests/Makefile.in dlls/Maketest.rules
 dlls/dswave/Makefile: dlls/dswave/Makefile.in dlls/Makedll.rules
diff --git a/configure b/configure
index 23dfa4b..2175a09 100755
--- a/configure
+++ b/configure
@@ -20400,6 +20400,8 @@ ac_config_files="$ac_config_files dlls/dpnet/Makefile"
 
 ac_config_files="$ac_config_files dlls/dpnhpast/Makefile"
 
+ac_config_files="$ac_config_files dlls/dpnlobby/Makefile"
+
 ac_config_files="$ac_config_files dlls/dsound/Makefile"
 
 ac_config_files="$ac_config_files dlls/dsound/tests/Makefile"
@@ -21601,6 +21603,7 @@ do
     "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/dpnlobby/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dpnlobby/Makefile" ;;
     "dlls/dsound/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dsound/Makefile" ;;
     "dlls/dsound/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dsound/tests/Makefile" ;;
     "dlls/dswave/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/dswave/Makefile" ;;
diff --git a/configure.ac b/configure.ac
index ec6ff71..6adff61 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1626,6 +1626,7 @@ 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/dpnlobby/Makefile])
 AC_CONFIG_FILES([dlls/dsound/Makefile])
 AC_CONFIG_FILES([dlls/dsound/tests/Makefile])
 AC_CONFIG_FILES([dlls/dswave/Makefile])
diff --git a/dlls/Makefile.in b/dlls/Makefile.in
index 2a7b7b8..d51f783 100644
--- a/dlls/Makefile.in
+++ b/dlls/Makefile.in
@@ -69,6 +69,7 @@ BASEDIRS = \
 	dpnaddr \
 	dpnet \
 	dpnhpast \
+	dpnlobby \
 	dsound \
 	dswave \
 	dwmapi \
diff --git a/dlls/dpnlobby/Makefile.in b/dlls/dpnlobby/Makefile.in
new file mode 100644
index 0000000..d8a5f50
--- /dev/null
+++ b/dlls/dpnlobby/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = dpnlobby.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/dpnlobby/dpnlobby.spec b/dlls/dpnlobby/dpnlobby.spec
new file mode 100644
index 0000000..8ff8e0c
--- /dev/null
+++ b/dlls/dpnlobby/dpnlobby.spec
@@ -0,0 +1 @@
+@ stdcall DirectPlay8LobbyCreate(ptr ptr ptr) dpnet.DirectPlay8Create
diff --git a/dlls/dpnlobby/version.rc b/dlls/dpnlobby/version.rc
new file mode 100644
index 0000000..d91ebaa
--- /dev/null
+++ b/dlls/dpnlobby/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 DpnLobby dll"
+#define WINE_FILENAME_STR "dpnlobby.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