mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 09:32:52 +00:00
14 lines
240 B
C
14 lines
240 B
C
#ifndef __LIBVERSION_H__
|
|
#define __LIBVERSION_H__
|
|
|
|
#define _V_MAJOR_ 1
|
|
#define _V_MINOR_ 8
|
|
#define _V_PATCH_ 17
|
|
|
|
#define _V_DATE_ __DATE__
|
|
#define _V_TIME_ __TIME__
|
|
|
|
#define _V_STRING "libOGC Release 1.8.17"
|
|
|
|
#endif // __LIBVERSION_H__
|