dpnlobby: Add dpnlobby that forwards to dpnet.dll.

This commit is contained in:
Luis C. Busquets Pérez 2007-08-02 11:04:50 +02:00 committed by Alexandre Julliard
parent a02ccd9a15
commit 5996c1324a
8 changed files with 47 additions and 0 deletions

1
.gitignore vendored
View File

@ -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

View File

@ -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

3
configure vendored
View File

@ -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" ;;

View File

@ -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])

View File

@ -69,6 +69,7 @@ BASEDIRS = \
dpnaddr \
dpnet \
dpnhpast \
dpnlobby \
dsound \
dswave \
dwmapi \

12
dlls/dpnlobby/Makefile.in Normal file
View File

@ -0,0 +1,12 @@
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = dpnlobby.dll
IMPORTS = dpnet kernel32
RC_SRCS = version.rc
@MAKE_DLL_RULES@
@DEPENDENCIES@ # everything below this line is overwritten by make depend

View File

@ -0,0 +1 @@
@ stdcall DirectPlay8LobbyCreate(ptr ptr ptr) dpnet.DirectPlay8Create

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

@ -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"