2015-03-16 06:16:18 +00:00
|
|
|
#ifndef HEADER_UnsupportedProcess
|
|
|
|
#define HEADER_UnsupportedProcess
|
|
|
|
/*
|
|
|
|
htop - UnsupportedProcess.h
|
|
|
|
(C) 2015 Hisham H. Muhammad
|
2020-10-05 07:51:32 +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
|
|
|
|
|
|
|
#define Process_delete UnsupportedProcess_delete
|
|
|
|
|
2015-07-12 16:26:33 +00:00
|
|
|
Process* UnsupportedProcess_new(Settings* settings);
|
|
|
|
|
2015-03-16 06:16:18 +00:00
|
|
|
void UnsupportedProcess_delete(Object* cast);
|
|
|
|
|
|
|
|
#endif
|