From: Alistair Leslie-Hughes Subject: Add dplaysvr.exe stub Message-Id: Date: Sun, 21 Jun 2015 20:35:32 +1000 Hi, Changelog: Add dplaysvr.exe stub Best Regards Alistair Leslie-Hughes From 82772d0b0ed85c4351fe105d2400c8c72c53b3ea Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Sun, 21 Jun 2015 20:31:57 +1000 Subject: [PATCH 11/11] Add dplaysvr.exe stub --- configure | 2 ++ configure.ac | 1 + programs/dplaysvr/Makefile.in | 5 +++++ programs/dplaysvr/main.c | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 41 insertions(+) create mode 100644 programs/dplaysvr/Makefile.in create mode 100644 programs/dplaysvr/main.c diff --git a/configure b/configure index 33dd534..47d94f9 100755 --- a/configure +++ b/configure @@ -1377,6 +1377,7 @@ enable_cmd enable_conhost enable_control enable_cscript +enable_dplaysvr enable_dpnsvr enable_dxdiag enable_eject @@ -17777,6 +17778,7 @@ wine_fn_config_test programs/cmd/tests cmd.exe_test wine_fn_config_program conhost enable_conhost install wine_fn_config_program control enable_control install wine_fn_config_program cscript enable_cscript clean,install +wine_fn_config_program dplaysvr enable_dplaysvr install wine_fn_config_program dpnsvr enable_dpnsvr install wine_fn_config_program dxdiag enable_dxdiag install,po wine_fn_config_program eject enable_eject install diff --git a/configure.ac b/configure.ac index f56b6f6..a696e54 100644 --- a/configure.ac +++ b/configure.ac @@ -3452,6 +3452,7 @@ WINE_CONFIG_TEST(programs/cmd/tests) WINE_CONFIG_PROGRAM(conhost,,[install]) WINE_CONFIG_PROGRAM(control,,[install]) WINE_CONFIG_PROGRAM(cscript,,[clean,install]) +WINE_CONFIG_PROGRAM(dplaysvr,,[install]) WINE_CONFIG_PROGRAM(dpnsvr,,[install]) WINE_CONFIG_PROGRAM(dxdiag,,[install,po]) WINE_CONFIG_PROGRAM(eject,,[install]) diff --git a/programs/dplaysvr/Makefile.in b/programs/dplaysvr/Makefile.in new file mode 100644 index 0000000..d9c6c55 --- /dev/null +++ b/programs/dplaysvr/Makefile.in @@ -0,0 +1,5 @@ +MODULE = dplaysvr.exe +APPMODE = -mconsole -municode + +C_SRCS = \ + main.c diff --git a/programs/dplaysvr/main.c b/programs/dplaysvr/main.c new file mode 100644 index 0000000..4ecfd45 --- /dev/null +++ b/programs/dplaysvr/main.c @@ -0,0 +1,33 @@ +/* + * Copyright 2015 Alistair Leslie-Hughes + * + * 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(dpnsvr); + +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.1.4