services: Add program.

Mikołaj Zalewski mikolaj at zalewski.pl
Sat Mar 15 03:49:42 CDT 2008


---
 programs/services/Makefile.in |   14 ++++++++++++++
 programs/services/services.c  |   28 ++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+), 0 deletions(-)
 create mode 100644 programs/services/Makefile.in
 create mode 100644 programs/services/services.c

diff --git a/programs/services/Makefile.in b/programs/services/Makefile.in
new file mode 100644
index 0000000..52c69e0
--- /dev/null
+++ b/programs/services/Makefile.in
@@ -0,0 +1,14 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = services.exe
+APPMODE   = -mconsole
+IMPORTS   = kernel32
+
+C_SRCS = \
+	services.c
+
+ at MAKE_PROG_RULES@
+
+ at DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/programs/services/services.c b/programs/services/services.c
new file mode 100644
index 0000000..04532d1
--- /dev/null
+++ b/programs/services/services.c
@@ -0,0 +1,28 @@
+/*
+ * Services - controls services keeps track of their state
+ *
+ * Copyright 2007 Google (Mikolaj Zalewski)
+ *
+ * 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 WIN32_LEAN_AND_MEAN
+
+#include <stdarg.h>
+
+int main(int argc, char *argv[])
+{
+    return 0;
+}
-- 
1.5.3.GIT




--------------020507010608040502070302--



More information about the wine-patches mailing list