[TASKLIST] Implement tasklist command-line utility (#3440)

Add command-line program "tasklist" for ReactOS.
It works fine on Windows as well.
This commit is contained in:
He Yang 2021-02-24 18:05:15 +08:00 committed by GitHub
parent 9039de127c
commit 633ece9025
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 929 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#define IDS_USAGE 1000
#define IDS_DESCRIPTION 1001
#define IDS_OPTION_TOO_MUCH 1002
#define IDS_INVALID_SYNTAX 1003
#define IDS_INVALID_OPTION 1004
#define IDS_ENUM_FAILED 1005
#define IDS_OUT_OF_MEMORY 1006
#define IDS_HEADER_IMAGENAME 1007
#define IDS_HEADER_PID 1008
#define IDS_HEADER_SESSION 1009
#define IDS_HEADER_MEMUSAGE 1010
#define IDS_MEMORY_STR 1011