From: Austin English Subject: msinfo32: add stub program Message-Id: Date: Tue, 13 Sep 2016 03:16:07 -0500 Fixes https://bugs.winehq.org/show_bug.cgi?id=40533 -- -Austin GPG: 14FB D7EA A041 937B From 97f823dfff93f95e0538a85dc4352755d7a1e774 Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 13 Sep 2016 03:14:51 -0500 Subject: [PATCH] msinfo32: add stub program Signed-off-by: Austin English --- configure.ac | 1 + programs/msinfo32/Makefile.in | 5 +++++ programs/msinfo32/main.c | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 programs/msinfo32/Makefile.in create mode 100644 programs/msinfo32/main.c diff --git a/configure.ac b/configure.ac index 0331c36..3d2d989 100644 --- a/configure.ac +++ b/configure.ac @@ -3498,6 +3498,7 @@ WINE_CONFIG_PROGRAM(ipconfig,,[clean,install]) WINE_CONFIG_PROGRAM(lodctr,,[install]) WINE_CONFIG_PROGRAM(mofcomp,,[install]) WINE_CONFIG_PROGRAM(mshta,,[install]) +WINE_CONFIG_PROGRAM(msinfo,,[install]) WINE_CONFIG_PROGRAM(msiexec,,[install,installbin,manpage]) WINE_CONFIG_PROGRAM(net,,[clean,install]) WINE_CONFIG_PROGRAM(netsh,,[install]) diff --git a/programs/msinfo32/Makefile.in b/programs/msinfo32/Makefile.in new file mode 100644 index 0000000..e958c27 --- /dev/null +++ b/programs/msinfo32/Makefile.in @@ -0,0 +1,5 @@ +MODULE = msinfo32.exe +APPMODE = -mwindows -municode + +C_SRCS = \ + main.c diff --git a/programs/msinfo32/main.c b/programs/msinfo32/main.c new file mode 100644 index 0000000..77bb927 --- /dev/null +++ b/programs/msinfo32/main.c @@ -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; +} -- 2.7.3