summaryrefslogtreecommitdiffstats
path: root/TraceScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'TraceScreen.h')
-rw-r--r--TraceScreen.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/TraceScreen.h b/TraceScreen.h
index 0fe9bff0..34ee5cb9 100644
--- a/TraceScreen.h
+++ b/TraceScreen.h
@@ -1,11 +1,13 @@
+/* Do not edit this file. It was automatically generated. */
+
+#ifndef HEADER_TraceScreen
+#define HEADER_TraceScreen
/*
htop - TraceScreen.h
-(C) 2005 Hisham H. Muhammad
+(C) 2005-2006 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
-#ifndef HEADER_TraceScreen
-#define HEADER_TraceScreen
#define _GNU_SOURCE
#include <stdio.h>
@@ -13,11 +15,16 @@ in the source distribution for its full text.
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
+#include <sys/types.h>
+#include <sys/wait.h>
#include "ProcessList.h"
+#include "Process.h"
+#include "ListItem.h"
#include "Panel.h"
#include "FunctionBar.h"
+
typedef struct TraceScreen_ {
Process* process;
Panel* display;
@@ -25,6 +32,7 @@ typedef struct TraceScreen_ {
bool tracing;
} TraceScreen;
+
TraceScreen* TraceScreen_new(Process* process);
void TraceScreen_delete(TraceScreen* this);
@@ -34,4 +42,3 @@ void TraceScreen_draw(TraceScreen* this);
void TraceScreen_run(TraceScreen* this);
#endif
-