naev 0.10.4
gui_osd.h
1/*
2 * See Licensing and Copyright notice in naev.h
3 */
4#pragma once
5
6/*
7 * OSD usage.
8 */
9unsigned int osd_create( const char *title,
10 int nitems, const char **items, int priority );
11int osd_destroy( unsigned int osd );
12int osd_active( unsigned int osd, int msg );
13int osd_getActive( unsigned int osd );
14char *osd_getTitle( unsigned int osd );
15char **osd_getItems( unsigned int osd );
16
17/*
18 * Subsystem usage.
19 */
20int osd_setup( int x, int y, int w, int h );
21void osd_exit (void);
22void osd_render (void);