PCPProcessTable.h 451 B

123456789101112131415161718192021222324
  1. #ifndef HEADER_PCPProcessTable
  2. #define HEADER_PCPProcessTable
  3. /*
  4. htop - PCPProcessTable.h
  5. (C) 2014 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 <stdbool.h>
  10. #include <sys/types.h>
  11. #include "Hashtable.h"
  12. #include "ProcessTable.h"
  13. #include "UsersTable.h"
  14. #include "pcp/Platform.h"
  15. typedef struct PCPProcessTable_ {
  16. ProcessTable super;
  17. } PCPProcessTable;
  18. #endif