htop/unsupported/UnsupportedProcess.h

29 lines
593 B
C
Raw Normal View History

2015-03-16 03:16:18 -03:00
#ifndef HEADER_UnsupportedProcess
#define HEADER_UnsupportedProcess
/*
htop - UnsupportedProcess.h
(C) 2015 Hisham H. Muhammad
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
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
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