htop/unsupported/UnsupportedProcess.h

21 lines
469 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
#define Process_delete UnsupportedProcess_delete
extern ProcessFieldData Process_fields[LAST_PROCESSFIELD];
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