UnsupportedProcess.h 587 B

12345678910111213141516171819202122232425262728
  1. #ifndef HEADER_UnsupportedProcess
  2. #define HEADER_UnsupportedProcess
  3. /*
  4. htop - UnsupportedProcess.h
  5. (C) 2015 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 "Machine.h"
  10. typedef struct UnsupportedProcess_ {
  11. Process super;
  12. /* Add platform specific fields */
  13. } UnsupportedProcess;
  14. extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
  15. Process* UnsupportedProcess_new(const Machine* host);
  16. void Process_delete(Object* cast);
  17. extern const ProcessClass UnsupportedProcess_class;
  18. #endif