2007-12-17 05:50:00 +00:00
|
|
|
#ifndef HEADER_AffinityPanel
|
|
|
|
#define HEADER_AffinityPanel
|
2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - AffinityPanel.h
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2011-12-26 21:35:57 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2007-12-17 05:50:00 +00:00
|
|
|
|
|
|
|
#include "Panel.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "Affinity.h"
|
|
|
|
#include "ProcessList.h"
|
2020-08-26 00:15:00 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
extern const PanelClass AffinityPanel_class;
|
2012-12-05 15:12:20 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
Panel* AffinityPanel_new(ProcessList* pl, Affinity* affinity, int* width);
|
2007-12-17 05:50:00 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
Affinity* AffinityPanel_getAffinity(Panel* super, ProcessList* pl);
|
2007-12-17 05:50:00 +00:00
|
|
|
|
|
|
|
#endif
|