all repos — mgba @ 4297ae70fd81d3092559610b088d3b5fff0fe212

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
13#include <mgba-util/dllexports.h>
14
15extern MGBA_EXPORT const char* const gitCommit;
16extern MGBA_EXPORT const char* const gitCommitShort;
17extern MGBA_EXPORT const char* const gitBranch;
18extern MGBA_EXPORT const int gitRevision;
19extern MGBA_EXPORT const char* const binaryName;
20extern MGBA_EXPORT const char* const projectName;
21extern MGBA_EXPORT const char* const projectVersion;
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif