msinfo32: Add stub program.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Austin English 2016-09-13 03:14:51 -05:00 committed by Alexandre Julliard
parent 78bbde2e5f
commit 091fa899b2
4 changed files with 41 additions and 0 deletions

2
configure vendored
View File

@ -1501,6 +1501,7 @@ enable_lodctr
enable_mofcomp
enable_mshta
enable_msiexec
enable_msinfo32
enable_net
enable_netsh
enable_netstat
@ -18405,6 +18406,7 @@ wine_fn_config_program lodctr enable_lodctr install
wine_fn_config_program mofcomp enable_mofcomp install
wine_fn_config_program mshta enable_mshta install
wine_fn_config_program msiexec enable_msiexec install,installbin,manpage
wine_fn_config_program msinfo32 enable_msinfo32 install
wine_fn_config_program net enable_net clean,install
wine_fn_config_program netsh enable_netsh install
wine_fn_config_program netstat enable_netstat clean,install

View File

@ -3523,6 +3523,7 @@ WINE_CONFIG_PROGRAM(lodctr,,[install])
WINE_CONFIG_PROGRAM(mofcomp,,[install])
WINE_CONFIG_PROGRAM(mshta,,[install])
WINE_CONFIG_PROGRAM(msiexec,,[install,installbin,manpage])
WINE_CONFIG_PROGRAM(msinfo32,,[install])
WINE_CONFIG_PROGRAM(net,,[clean,install])
WINE_CONFIG_PROGRAM(netsh,,[install])
WINE_CONFIG_PROGRAM(netstat,,[clean,install])

View File

@ -0,0 +1,5 @@
MODULE = msinfo32.exe
APPMODE = -mwindows -municode
C_SRCS = \
main.c

View File

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