EnvScreen.h 530 B

123456789101112131415161718192021222324252627
  1. #ifndef HEADER_EnvScreen
  2. #define HEADER_EnvScreen
  3. /*
  4. htop - EnvScreen.h
  5. (C) 2015,2016 Michael Klein
  6. (C) 2016,2017 Hisham H. Muhammad
  7. (C) 2020,2021 htop dev team
  8. Released under the GNU GPLv2+, see the COPYING file
  9. in the source distribution for its full text.
  10. */
  11. #include "InfoScreen.h"
  12. #include "Object.h"
  13. #include "Process.h"
  14. typedef struct EnvScreen_ {
  15. InfoScreen super;
  16. } EnvScreen;
  17. extern const InfoScreenClass EnvScreen_class;
  18. EnvScreen* EnvScreen_new(Process* process);
  19. void EnvScreen_delete(Object* this);
  20. #endif