mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
6cc122f491
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
251 B
C
13 lines
251 B
C
#ifndef DISPLAY_H
|
|
#define DISPLAY_H
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdk.h>
|
|
#include <cairo.h>
|
|
|
|
extern int selected_dive;
|
|
extern GtkWidget *dive_profile_frame(void);
|
|
extern GtkWidget *create_dive_list(void);
|
|
extern void repaint_dive(void);
|
|
|
|
#endif
|