[PATCH 4/4] conhost.exe: Add program

Detlef Riekenberg wine.dev at web.de
Wed Jan 2 09:36:00 CST 2013


Prerequisite for the IE10 installer (win7sp1).
Reference: KB2731771

--
By by ... Detlef
---
 programs/conhost/Makefile.in |    8 ++++++++
 programs/conhost/conhost.c   |   33 +++++++++++++++++++++++++++++++++
 programs/conhost/version.rc  |   26 ++++++++++++++++++++++++++
 3 files changed, 67 insertions(+), 0 deletions(-)
 create mode 100644 programs/conhost/Makefile.in
 create mode 100644 programs/conhost/conhost.c
 create mode 100644 programs/conhost/version.rc

diff --git a/programs/conhost/Makefile.in b/programs/conhost/Makefile.in
new file mode 100644
index 0000000..21c0838
--- /dev/null
+++ b/programs/conhost/Makefile.in
@@ -0,0 +1,8 @@
+MODULE    = conhost.exe
+APPMODE   = -mconsole -municode
+
+C_SRCS = conhost.c
+
+RC_SRCS = version.rc
+
+ at MAKE_PROG_RULES@
diff --git a/programs/conhost/conhost.c b/programs/conhost/conhost.c
new file mode 100644
index 0000000..3ef40ba
--- /dev/null
+++ b/programs/conhost/conhost.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2012 Detlef Riekenberg
+ *
+ * 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(conhost);
+
+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;
+}
diff --git a/programs/conhost/version.rc b/programs/conhost/version.rc
new file mode 100644
index 0000000..2ad2611
--- /dev/null
+++ b/programs/conhost/version.rc
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2012 Detlef Riekenberg
+ *
+ * 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 conhost"
+#define WINE_FILENAME_STR "conhost.exe"
+#define WINE_FILEVERSION 6,1,7601,22045
+#define WINE_FILEVERSION_STR "6.1.7601.22045"
+#define WINE_PRODUCTVERSION 6,1,7601,22045
+#define WINE_PRODUCTVERSION_STR "6.1.7601.22045"
+
+#include "wine/wine_common_ver.rc"
-- 
1.7.5.4




More information about the wine-patches mailing list