mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[SCHTASKS] Import from Wine Staging 1.9.14. CORE-11576
svn path=/trunk/; revision=71903
This commit is contained in:
parent
a9be1b1122
commit
1c7b4d4699
4 changed files with 41 additions and 0 deletions
|
@ -10,6 +10,7 @@ add_subdirectory(lodctr)
|
|||
add_subdirectory(mode)
|
||||
add_subdirectory(more)
|
||||
add_subdirectory(reg)
|
||||
add_subdirectory(schtasks)
|
||||
add_subdirectory(sort)
|
||||
add_subdirectory(taskkill)
|
||||
add_subdirectory(tree)
|
||||
|
|
|
@ -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)
|
33
reactos/base/applications/cmdutils/schtasks/schtasks.c
Normal file
33
reactos/base/applications/cmdutils/schtasks/schtasks.c
Normal file
|
@ -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;
|
||||
}
|
|
@ -231,6 +231,7 @@ ReactOS shares the following programs with Winehq.
|
|||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue