Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dbc21a18
Commit
dbc21a18
authored
May 18, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
May 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskkill: Print a fixme if the /T option is used.
parent
b1c4eecd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
taskkill.c
programs/taskkill/taskkill.c
+6
-0
No files found.
programs/taskkill/taskkill.c
View file @
dbc21a18
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment