dpvsetup: Add stub program.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2020-10-20 04:02:02 -05:00 committed by Alexandre Julliard
parent 73afd2648c
commit 9b8188a960
5 changed files with 70 additions and 0 deletions

2
configure vendored
View File

@ -1762,6 +1762,7 @@ enable_cscript
enable_dism
enable_dplaysvr
enable_dpnsvr
enable_dpvsetup
enable_dxdiag
enable_eject
enable_expand
@ -21221,6 +21222,7 @@ wine_fn_config_makefile programs/cscript enable_cscript
wine_fn_config_makefile programs/dism enable_dism
wine_fn_config_makefile programs/dplaysvr enable_dplaysvr
wine_fn_config_makefile programs/dpnsvr enable_dpnsvr
wine_fn_config_makefile programs/dpvsetup enable_dpvsetup
wine_fn_config_makefile programs/dxdiag enable_dxdiag
wine_fn_config_makefile programs/eject enable_eject
wine_fn_config_makefile programs/expand enable_expand

View File

@ -3967,6 +3967,7 @@ WINE_CONFIG_MAKEFILE(programs/cscript)
WINE_CONFIG_MAKEFILE(programs/dism)
WINE_CONFIG_MAKEFILE(programs/dplaysvr)
WINE_CONFIG_MAKEFILE(programs/dpnsvr)
WINE_CONFIG_MAKEFILE(programs/dpvsetup)
WINE_CONFIG_MAKEFILE(programs/dxdiag)
WINE_CONFIG_MAKEFILE(programs/eject)
WINE_CONFIG_MAKEFILE(programs/expand)

View File

@ -0,0 +1,8 @@
MODULE = dpvsetup.exe
EXTRADLLFLAGS = -mwindows -municode -mno-cygwin
C_SRCS = \
main.c
RC_SRCS = version.rc

33
programs/dpvsetup/main.c Normal file
View File

@ -0,0 +1,33 @@
/*
* 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
*/
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(dpvsetup);
int __cdecl wmain(int argc, WCHAR *argv[])
{
int i;
WINE_FIXME("stub:");
for (i = 0; i < argc; i++)
WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
WINE_FIXME("\n");
return 0;
}

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 dpvsetup"
#define WINE_FILENAME_STR "dpvsetup.exe"
#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"