[pkg-wine-party] [wine] 115/175: msinfo32: Add stub program.

Jens Reyer jreyer-guest at moszumanska.debian.org
Mon Sep 19 17:29:59 UTC 2016


This is an automated email from the git hooks/post-receive script.

jreyer-guest pushed a commit to branch upstream
in repository wine.

commit 091fa899b2152d6ee044ab1b0afb7bc851b10e9a
Author: Austin English <austinenglish at gmail.com>
Date:   Tue Sep 13 03:14:51 2016 -0500

    msinfo32: Add stub program.
    
    Signed-off-by: Austin English <austinenglish at gmail.com>
    Signed-off-by: Alexandre Julliard <julliard at winehq.org>
---
 configure                     |  2 ++
 configure.ac                  |  1 +
 programs/msinfo32/Makefile.in |  5 +++++
 programs/msinfo32/main.c      | 33 +++++++++++++++++++++++++++++++++
 4 files changed, 41 insertions(+)

diff --git a/configure b/configure
index 7acd339..b8133ae 100755
--- a/configure
+++ b/configure
@@ -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
diff --git a/configure.ac b/configure.ac
index 4944d23..ac75845 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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])
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;
+}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git



More information about the pkg-wine-party mailing list