xemu/xemu-version.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
346 B
C
Raw Normal View History

2021-05-19 07:12:22 +00:00
#include "xemu-version-macro.h"
2024-07-27 00:21:01 +00:00
const int xemu_version_major = XEMU_VERSION_MAJOR;
const int xemu_version_minor = XEMU_VERSION_MINOR;
const int xemu_version_patch = XEMU_VERSION_PATCH;
2021-05-19 07:12:22 +00:00
const char *xemu_version = XEMU_VERSION;
const char *xemu_branch = XEMU_BRANCH;;
const char *xemu_commit = XEMU_COMMIT;
const char *xemu_date = XEMU_DATE;