yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
yaze_version.h
Go to the documentation of this file.
1#ifndef YAZE_VERSION_H
2#define YAZE_VERSION_H
3
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13#include <stdbool.h>
14
30#ifndef YAZE_VERSION_STRING
31/* Fallback if yaze_config.h not included - will be overridden by build */
32#define YAZE_VERSION_STRING "0.7.0"
33#define YAZE_VERSION_NUMBER 700
34#endif
35
44bool yaze_check_version_compatibility(const char* expected_version);
45
51const char* yaze_get_version_string(void);
52
59
60#ifdef __cplusplus
61}
62#endif
63
64#endif // YAZE_VERSION_H
int yaze_get_version_number(void)
Get the current YAZE version number.
Definition yaze.cc:66
const char * yaze_get_version_string(void)
Get the current YAZE version string.
Definition yaze.cc:64
bool yaze_check_version_compatibility(const char *expected_version)
Check if the current YAZE version is compatible with the expected version.
Definition yaze.cc:68