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