evisum/src/bin/ui/ui_process_list.h

26 lines
360 B
C
Raw Normal View History

2020-11-09 05:40:00 -08:00
#ifndef __UI_PROCESS_LIST_H__
#define __UI_PROCESS_LIST_H__
#include "ui.h"
typedef enum
{
SORT_BY_NONE,
SORT_BY_PID,
SORT_BY_UID,
SORT_BY_NICE,
SORT_BY_PRI,
SORT_BY_CPU,
SORT_BY_THREADS,
SORT_BY_SIZE,
SORT_BY_RSS,
SORT_BY_CMD,
SORT_BY_STATE,
SORT_BY_CPU_USAGE,
} Sort_Type;
2020-11-09 05:40:00 -08:00
void
ui_process_list_win_add(Ui *ui);
2020-11-09 05:40:00 -08:00
#endif