Commit dbc21a18 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

taskkill: Print a fixme if the /T option is used.

parent b1c4eecd
......@@ -22,10 +22,13 @@
#include <stdlib.h>
#include <windows.h>
#include <psapi.h>
#include <wine/debug.h>
#include <wine/unicode.h>
#include "taskkill.h"
WINE_DEFAULT_DEBUG_CHANNEL(taskkill);
static int force_termination;
static WCHAR **task_list;
......@@ -448,6 +451,7 @@ static BOOL process_arguments(int argc, WCHAR *argv[])
static const WCHAR slashImage[] = {'/','i','m',0};
static const WCHAR slashPID[] = {'/','p','i','d',0};
static const WCHAR slashHelp[] = {'/','?',0};
static const WCHAR slashTerminateChildren[] = {'/','t',0};
if (argc > 1)
{
......@@ -465,6 +469,8 @@ static BOOL process_arguments(int argc, WCHAR *argv[])
{
int got_im = 0, got_pid = 0;
if (!strcmpiW(slashTerminateChildren, argv[i]))
WINE_FIXME("/T not supported\n");
if (!strcmpiW(slashForceTerminate, argv[i]))
force_termination = 1;
/* Options /IM and /PID appear to behave identically, except for
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment