dpnsvr.exe: new program

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Tue Feb 11 02:34:56 CST 2014


Hi,


Changelog:
     dpnsvr.exe: new program


Best Regards
  Alistair Leslie-Hughes
-------------- next part --------------
>From d4f18947a6ee72409eb4181ae71f8399b5f49741 Mon Sep 17 00:00:00 2001
From: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date: Fri, 7 Feb 2014 10:24:06 +1100
Subject: [PATCH 11/13] Add dpnsvr.exe stub

---
 programs/dpnsvr/Makefile.in |  5 +++++
 programs/dpnsvr/main.c      | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)
 create mode 100644 programs/dpnsvr/Makefile.in
 create mode 100644 programs/dpnsvr/main.c

diff --git a/programs/dpnsvr/Makefile.in b/programs/dpnsvr/Makefile.in
new file mode 100644
index 0000000..1dac8a4
--- /dev/null
+++ b/programs/dpnsvr/Makefile.in
@@ -0,0 +1,5 @@
+MODULE    = dpnsvr.exe
+APPMODE   = -mconsole -municode
+
+C_SRCS = \
+	main.c
diff --git a/programs/dpnsvr/main.c b/programs/dpnsvr/main.c
new file mode 100644
index 0000000..6041cbc
--- /dev/null
+++ b/programs/dpnsvr/main.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2014 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;
+}
-- 
1.8.3.2



More information about the wine-patches mailing list