all repos — mgba @ 16688a59717d43518dfa7f9c2c10fdde148e1a70

mGBA Game Boy Advance Emulator

include/mgba/core/version.h (view raw)

 1/* Copyright (c) 2013-2016 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef VERSION_H
 7#define VERSION_H
 8
 9#ifdef __cplusplus
10extern "C" {
11#endif
12
13extern const char* const gitCommit;
14extern const char* const gitCommitShort;
15extern const char* const gitBranch;
16extern const int gitRevision;
17extern const char* const binaryName;
18extern const char* const projectName;
19extern const char* const projectVersion;
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif