mstask: Skeleton implementation of Task Scheduler Service.
diff --git a/dlls/Makefile.in b/dlls/Makefile.in
index d130f35..add8d40 100644
--- a/dlls/Makefile.in
+++ b/dlls/Makefile.in
@@ -156,6 +156,7 @@
msnet32 \
msrle32 \
mssip32 \
+ mstask \
msvcirt \
msvcr71 \
msvcrt \
diff --git a/dlls/mstask/Makefile.in b/dlls/mstask/Makefile.in
new file mode 100644
index 0000000..2fd0a66
--- /dev/null
+++ b/dlls/mstask/Makefile.in
@@ -0,0 +1,13 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR = @srcdir@
+VPATH = @srcdir@
+MODULE = mstask.dll
+IMPORTS = kernel32
+
+C_SRCS = \
+ mstask_main.c
+
+@MAKE_DLL_RULES@
+
+@DEPENDENCIES@ # everything below this line is overwritten by make depend
diff --git a/dlls/mstask/mstask.spec b/dlls/mstask/mstask.spec
new file mode 100644
index 0000000..c09f7f1
--- /dev/null
+++ b/dlls/mstask/mstask.spec
@@ -0,0 +1,13 @@
+@ stub ConvertAtJobsToTasks
+@ stub DllCanUnloadNow
+@ stub DllGetClassObject
+@ stub GetNetScheduleAccountInformation
+@ stub NetrJobAdd
+@ stub NetrJobDel
+@ stub NetrJobEnum
+@ stub NetrJobGetInfo
+@ stub SAGetAccountInformation
+@ stub SAGetNSAccountInformation
+@ stub SASetAccountInformation
+@ stub SASetNSAccountInformation
+@ stub SetNetScheduleAccountInformation
diff --git a/dlls/mstask/mstask_main.c b/dlls/mstask/mstask_main.c
new file mode 100644
index 0000000..c373d66
--- /dev/null
+++ b/dlls/mstask/mstask_main.c
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2008 Google (Roy Shea)
+ *
+ * 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 <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(mstask);
+
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+{
+ TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
+
+ switch (fdwReason)
+ {
+ case DLL_WINE_PREATTACH:
+ return FALSE;
+ case DLL_PROCESS_ATTACH:
+ DisableThreadLibraryCalls(hinstDLL);
+ break;
+ case DLL_PROCESS_DETACH:
+ break;
+ }
+
+ return TRUE;
+}