Files
htop/EnvScreen.h
Michael Klein 0919ea32f9 'e' displays environment of current process
- uses sysctl(KERN_PROCARGS2) on *BSD
- doesn't work on Linux yet
2015-12-02 23:26:00 +01:00

23 lines
417 B
C

/* 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