FreeBSDProcessTable.h 443 B

123456789101112131415161718192021
  1. #ifndef HEADER_FreeBSDProcessTable
  2. #define HEADER_FreeBSDProcessTable
  3. /*
  4. htop - FreeBSDProcessTable.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. typedef struct FreeBSDProcessTable_ {
  15. ProcessTable super;
  16. } FreeBSDProcessTable;
  17. #endif