htop/EnvScreen.h

20 lines
318 B
C
Raw Permalink Normal View History

#ifndef HEADER_EnvScreen
#define HEADER_EnvScreen
#include "InfoScreen.h"
#include "Object.h"
#include "Process.h"
2021-04-29 15:12:43 +00:00
typedef struct EnvScreen_ {
InfoScreen super;
} EnvScreen;
2020-10-05 11:19:50 +00:00
extern const InfoScreenClass EnvScreen_class;
EnvScreen* EnvScreen_new(Process* process);
void EnvScreen_delete(Object* this);
#endif