mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
23 lines
341 B
C
23 lines
341 B
C
|
#ifndef INTERIMVERSION_H
|
||
|
#define INTERIMVERSION_H
|
||
|
|
||
|
#ifdef INTERIM_VERSION_EXISTS
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern const char* INTERIM_COMMIT;
|
||
|
extern const int LEN_INTERIM_COMMIT;
|
||
|
|
||
|
extern const char* COMMIT_DATE;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
|
#endif /* INTERIM_VERSION_EXISTS */
|
||
|
|
||
|
#endif /* INTERIMVERSION_H */
|