htop/AffinityPanel.h

22 lines
491 B
C
Raw Permalink Normal View History

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
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
2011-12-26 21:35:57 +00:00
#include "Affinity.h"
2021-05-10 15:28:32 +00:00
#include "Panel.h"
2011-12-26 21:35:57 +00:00
#include "ProcessList.h"
2021-04-29 15:12:43 +00:00
2020-10-05 11:19:50 +00:00
extern const PanelClass AffinityPanel_class;
Panel* AffinityPanel_new(ProcessList* pl, const Affinity* affinity, int* width);
2007-12-17 05:50:00 +00:00
Affinity* AffinityPanel_getAffinity(Panel* super, ProcessList* pl);
2007-12-17 05:50:00 +00:00
#endif