CommandScreen.h 526 B

1234567891011121314151617181920212223242526
  1. #ifndef HEADER_CommandScreen
  2. #define HEADER_CommandScreen
  3. /*
  4. htop - CommandScreen.h
  5. (C) 2017,2020 ryenus
  6. (C) 2020,2021 htop dev team
  7. Released under the GNU GPLv2+, see the COPYING file
  8. in the source distribution for its full text.
  9. */
  10. #include "InfoScreen.h"
  11. #include "Object.h"
  12. #include "Process.h"
  13. typedef struct CommandScreen_ {
  14. InfoScreen super;
  15. } CommandScreen;
  16. extern const InfoScreenClass CommandScreen_class;
  17. CommandScreen* CommandScreen_new(Process* process);
  18. void CommandScreen_delete(Object* this);
  19. #endif