all repos — mgba @ 93e5b6da7b69d94bbe2e0783f05897b1adee755b

mGBA Game Boy Advance Emulator

src/util/version.h (view raw)

 1/* Copyright (c) 2013-2015 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
 9extern const char* const gitCommit;
10extern const char* const gitCommitShort;
11extern const char* const gitBranch;
12extern const int gitRevision;
13extern const char* const binaryName;
14extern const char* const projectName;
15extern const char* const projectVersion;
16
17#endif