ReactOS 0.4.16-dev-2534-gdcd45a5
tasklist.h
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Tasklist Command
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Displays a list of currently running processes on the computer.
5 * COPYRIGHT: Copyright 2020 He Yang <1160386205@qq.com>
6 */
7
8#pragma once
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <wchar.h>
13
14#define WIN32_NO_STATUS
15#include <windows.h>
16#include <ndk/exfuncs.h>
17#include <strsafe.h>
18
19#include <conutils.h>
20
21#include "resource.h"
22
23#define NT_SYSTEM_QUERY_MAX_RETRY 5
24
25#define COLUMNWIDTH_IMAGENAME 25
26#define COLUMNWIDTH_PID 8
27#define COLUMNWIDTH_SESSION 11
28#define COLUMNWIDTH_MEMUSAGE 12