mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
23 lines
299 B
C
23 lines
299 B
C
#ifndef __NB_VERSION_H__
|
|
#define __NB_VERSION_H__
|
|
|
|
#include <nb_macro.h>
|
|
|
|
/* External library */
|
|
|
|
/* NishBox */
|
|
|
|
/* Standard */
|
|
|
|
typedef struct nb_version {
|
|
int major;
|
|
int minor;
|
|
int patch;
|
|
char full[64];
|
|
char opengl[32];
|
|
} nb_version_t;
|
|
|
|
void nb_get_version(nb_version_t* version);
|
|
|
|
#endif
|