2015-03-16 06:16:18 +00:00
|
|
|
#ifndef HEADER_UnsupportedProcess
|
|
|
|
#define HEADER_UnsupportedProcess
|
|
|
|
/*
|
|
|
|
htop - UnsupportedProcess.h
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
2021-09-22 09:33:00 +00:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2015-03-16 06:16:18 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2015-07-12 16:26:33 +00:00
|
|
|
#include "Settings.h"
|
2015-03-16 06:16:18 +00:00
|
|
|
|
2021-04-29 15:12:43 +00:00
|
|
|
|
2021-01-28 17:19:38 +00:00
|
|
|
typedef struct UnsupportedProcess_ {
|
|
|
|
Process super;
|
|
|
|
|
|
|
|
/* Add platform specific fields */
|
|
|
|
} UnsupportedProcess;
|
|
|
|
|
2015-03-16 06:16:18 +00:00
|
|
|
|
2020-12-15 18:44:52 +00:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
2020-12-13 14:52:32 +00:00
|
|
|
|
2021-01-28 17:19:38 +00:00
|
|
|
Process* UnsupportedProcess_new(const Settings* settings);
|
|
|
|
|
|
|
|
void Process_delete(Object* cast);
|
2015-07-12 16:26:33 +00:00
|
|
|
|
2021-01-28 17:19:38 +00:00
|
|
|
extern const ProcessClass UnsupportedProcess_class;
|
2015-03-16 06:16:18 +00:00
|
|
|
|
|
|
|
#endif
|