Author: akhaldi
Date: Tue Jul 12 15:35:42 2016
New Revision: 71903
URL:
http://svn.reactos.org/svn/reactos?rev=71903&view=rev
Log:
[SCHTASKS] Import from Wine Staging 1.9.14. CORE-11576
Added:
trunk/reactos/base/applications/cmdutils/schtasks/
trunk/reactos/base/applications/cmdutils/schtasks/CMakeLists.txt (with props)
trunk/reactos/base/applications/cmdutils/schtasks/schtasks.c (with props)
Modified:
trunk/reactos/base/applications/cmdutils/CMakeLists.txt
trunk/reactos/media/doc/README.WINE
Modified: trunk/reactos/base/applications/cmdutils/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/cmdutils…
==============================================================================
--- trunk/reactos/base/applications/cmdutils/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/base/applications/cmdutils/CMakeLists.txt [iso-8859-1] Tue Jul 12
15:35:42 2016
@@ -10,6 +10,7 @@
add_subdirectory(mode)
add_subdirectory(more)
add_subdirectory(reg)
+add_subdirectory(schtasks)
add_subdirectory(sort)
add_subdirectory(taskkill)
add_subdirectory(tree)
Added: trunk/reactos/base/applications/cmdutils/schtasks/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/cmdutils…
==============================================================================
--- trunk/reactos/base/applications/cmdutils/schtasks/CMakeLists.txt (added)
+++ trunk/reactos/base/applications/cmdutils/schtasks/CMakeLists.txt [iso-8859-1] Tue Jul
12 15:35:42 2016
@@ -0,0 +1,6 @@
+
+add_executable(schtasks schtasks.c)
+target_link_libraries(schtasks wine)
+set_module_type(schtasks win32cui UNICODE)
+add_importlibs(schtasks msvcrt kernel32 ntdll)
+add_cd_file(TARGET schtasks DESTINATION reactos/system32 FOR all)
Propchange: trunk/reactos/base/applications/cmdutils/schtasks/CMakeLists.txt
------------------------------------------------------------------------------
svn:eol-style = native
Added: trunk/reactos/base/applications/cmdutils/schtasks/schtasks.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/cmdutils…
==============================================================================
--- trunk/reactos/base/applications/cmdutils/schtasks/schtasks.c (added)
+++ trunk/reactos/base/applications/cmdutils/schtasks/schtasks.c [iso-8859-1] Tue Jul 12
15:35:42 2016
@@ -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(schtasks);
+
+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;
+}
Propchange: trunk/reactos/base/applications/cmdutils/schtasks/schtasks.c
------------------------------------------------------------------------------
svn:eol-style = native
Modified: trunk/reactos/media/doc/README.WINE
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=…
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Tue Jul 12 15:35:42 2016
@@ -231,6 +231,7 @@
reactos/base/applications/cmdutils/cscript # Synced to WineStaging-1.9.11
reactos/base/applications/cmdutils/reg # Synced to WineStaging-1.9.11
+reactos/base/applications/cmdutils/schtasks # Synced to WineStaging-1.9.14
reactos/base/applications/cmdutils/taskkill # Synced to WineStaging-1.9.11
reactos/base/applications/cmdutils/wmic # Synced to WineStaging-1.9.11
reactos/base/applications/cmdutils/wscript # Synced to WineStaging-1.9.11