mirror of https://github.com/xzeldon/htop.git
27 lines
487 B
C
27 lines
487 B
C
/* Do not edit this file. It was automatically generated. */
|
|
|
|
#ifndef HEADER_DisplayOptionsPanel
|
|
#define HEADER_DisplayOptionsPanel
|
|
|
|
|
|
#include "Panel.h"
|
|
#include "CheckItem.h"
|
|
#include "Settings.h"
|
|
#include "ScreenManager.h"
|
|
|
|
#include "debug.h"
|
|
#include <assert.h>
|
|
|
|
|
|
typedef struct DisplayOptionsPanel_ {
|
|
Panel super;
|
|
|
|
Settings* settings;
|
|
ScreenManager* scr;
|
|
} DisplayOptionsPanel;
|
|
|
|
|
|
DisplayOptionsPanel* DisplayOptionsPanel_new(Settings* settings, ScreenManager* scr);
|
|
|
|
#endif
|