UnsupportedProcessTable.h 372 B

1234567891011121314151617
  1. #ifndef HEADER_UnsupportedProcessTable
  2. #define HEADER_UnsupportedProcessTable
  3. /*
  4. htop - UnsupportedProcessTable.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 "ProcessTable.h"
  10. typedef struct UnsupportedProcessTable_ {
  11. ProcessTable super;
  12. } UnsupportedProcessTable;
  13. #endif