You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
902 B
41 lines
902 B
/* Do not edit this file. It was automatically generated. */ |
|
|
|
#ifndef HEADER_OpenFilesScreen |
|
#define HEADER_OpenFilesScreen |
|
/* |
|
htop - OpenFilesScreen.h |
|
(C) 2005-2006 Hisham H. Muhammad |
|
Released under the GNU GPL, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
#include "Process.h" |
|
#include "Panel.h" |
|
#include "FunctionBar.h" |
|
|
|
typedef struct OpenFiles_ProcessData_ { |
|
char* data[256]; |
|
struct OpenFiles_FileData_* files; |
|
int error; |
|
} OpenFiles_ProcessData; |
|
|
|
typedef struct OpenFiles_FileData_ { |
|
char* data[256]; |
|
struct OpenFiles_FileData_* next; |
|
} OpenFiles_FileData; |
|
|
|
typedef struct OpenFilesScreen_ { |
|
Process* process; |
|
pid_t pid; |
|
Panel* display; |
|
FunctionBar* bar; |
|
} OpenFilesScreen; |
|
|
|
|
|
OpenFilesScreen* OpenFilesScreen_new(Process* process); |
|
|
|
void OpenFilesScreen_delete(OpenFilesScreen* this); |
|
|
|
void OpenFilesScreen_run(OpenFilesScreen* this); |
|
|
|
#endif
|
|
|