htop/unsupported/UnsupportedProcess.h

29 lines
593 B
C
Raw Normal View History

2015-03-16 06:16:18 +00: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 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
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
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