OpenFilesScreen.h 572 B

12345678910111213141516171819202122232425262728
  1. #ifndef HEADER_OpenFilesScreen
  2. #define HEADER_OpenFilesScreen
  3. /*
  4. htop - OpenFilesScreen.h
  5. (C) 2005-2006 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 <sys/types.h>
  10. #include "InfoScreen.h"
  11. #include "Object.h"
  12. #include "Process.h"
  13. typedef struct OpenFilesScreen_ {
  14. InfoScreen super;
  15. pid_t pid;
  16. } OpenFilesScreen;
  17. extern const InfoScreenClass OpenFilesScreen_class;
  18. OpenFilesScreen* OpenFilesScreen_new(const Process* process);
  19. void OpenFilesScreen_delete(Object* this);
  20. #endif