dism: Add stub program.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Austin English 2018-06-04 16:10:15 -05:00 committed by Alexandre Julliard
parent 0b27528c56
commit 4739647405
4 changed files with 40 additions and 0 deletions

2
configure vendored
View File

@ -1666,6 +1666,7 @@ enable_cmd
enable_conhost
enable_control
enable_cscript
enable_dism
enable_dpnsvr
enable_dxdiag
enable_eject
@ -19369,6 +19370,7 @@ wine_fn_config_makefile programs/cmd/tests enable_tests
wine_fn_config_makefile programs/conhost enable_conhost
wine_fn_config_makefile programs/control enable_control
wine_fn_config_makefile programs/cscript enable_cscript
wine_fn_config_makefile programs/dism enable_dism
wine_fn_config_makefile programs/dpnsvr enable_dpnsvr
wine_fn_config_makefile programs/dxdiag enable_dxdiag
wine_fn_config_makefile programs/eject enable_eject

View File

@ -3869,6 +3869,7 @@ WINE_CONFIG_MAKEFILE(programs/cmd/tests)
WINE_CONFIG_MAKEFILE(programs/conhost)
WINE_CONFIG_MAKEFILE(programs/control)
WINE_CONFIG_MAKEFILE(programs/cscript)
WINE_CONFIG_MAKEFILE(programs/dism)
WINE_CONFIG_MAKEFILE(programs/dpnsvr)
WINE_CONFIG_MAKEFILE(programs/dxdiag)
WINE_CONFIG_MAKEFILE(programs/eject)

View File

@ -0,0 +1,4 @@
MODULE = dism.exe
APPMODE = -mconsole -municode
C_SRCS = dism.c

View File

@ -0,0 +1,33 @@
/*
* Copyright 2018 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(dism);
int 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;
}