mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
27 lines
342 B
C
27 lines
342 B
C
/**
|
|
* @file gf_version.h
|
|
* @~english
|
|
* @brief Version
|
|
*/
|
|
|
|
#ifndef __GF_VERSION_H__
|
|
#define __GF_VERSION_H__
|
|
|
|
#include <gf_pre.h>
|
|
#include <gf_macro.h>
|
|
|
|
/* Type */
|
|
#include <gf_type/version.h>
|
|
|
|
/* Engine */
|
|
|
|
/* Standard */
|
|
|
|
/**
|
|
* @~english
|
|
* @brief Get version of engine
|
|
*/
|
|
GF_EXPORT void gf_version_get(gf_version_t* version);
|
|
|
|
#endif
|