From 0919ea32f91bb2ddf349c1108f6f0f67b511cca6 Mon Sep 17 00:00:00 2001 From: Michael Klein Date: Wed, 2 Dec 2015 22:58:22 +0100 Subject: 'e' displays environment of current process - uses sysctl(KERN_PROCARGS2) on *BSD - doesn't work on Linux yet --- EnvScreen.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 EnvScreen.h (limited to 'EnvScreen.h') diff --git a/EnvScreen.h b/EnvScreen.h new file mode 100644 index 00000000..f33f0591 --- /dev/null +++ b/EnvScreen.h @@ -0,0 +1,22 @@ +/* Do not edit this file. It was automatically generated. */ + +#ifndef HEADER_EnvScreen +#define HEADER_EnvScreen + +#include "ProcessList.h" +#include "Panel.h" +#include "FunctionBar.h" + +typedef struct EnvScreen_ { + Process* process; + Panel* display; + FunctionBar* bar; +} EnvScreen; + +EnvScreen* EnvScreen_new(Process* process); + +void EnvScreen_delete(EnvScreen* this); + +void EnvScreen_run(EnvScreen* this); + +#endif -- cgit v1.2.3