summaryrefslogtreecommitdiff
path: root/src/ui.h
blob: 300e9506e95977a3abc7a73b0c42e968030f1968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef UI_H_
#define UI_H_

#define SPACER nk_spacer(ui->ctx)

#include "process_url.h"

struct ui_struct {
  struct nk_context *ctx;
  struct logger *logger;
  status_t *stat;
};

void load_ui(struct ui_struct *);

#endif