Minor syntactical changes for readability.
[xuni.git] / src / xuni.h
blob72b90e6593542c6815c5c9606d2081909fd9382f
1 /*! \file xuni.h
3 */
5 #ifndef XUNI_GUARD_XUNI_H
6 #define XUNI_GUARD_XUNI_H
8 #include "graphics.h" /* !!! for struct xuni_t */
9 #include "resource/resource.h"
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
15 struct xuni_t *allocate_xuni(void);
16 void init_xuni(struct xuni_t *xuni, struct resource_t *settings,
17 const char *icon);
18 void free_xuni(struct xuni_t *xuni);
19 const char *get_xuni_version_string(void);
21 #ifdef __cplusplus
23 #endif
25 #endif