AffinityPanel.h 483 B

123456789101112131415161718192021
  1. #ifndef HEADER_AffinityPanel
  2. #define HEADER_AffinityPanel
  3. /*
  4. htop - AffinityPanel.h
  5. (C) 2004-2011 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "Affinity.h"
  10. #include "Machine.h"
  11. #include "Panel.h"
  12. extern const PanelClass AffinityPanel_class;
  13. Panel* AffinityPanel_new(Machine* host, const Affinity* affinity, int* width);
  14. Affinity* AffinityPanel_getAffinity(Panel* super, Machine* host);
  15. #endif