mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 06:42:03 +00:00
common: fix version variable declarations
This was stupid.
This commit is contained in:
parent
975e98b3fe
commit
12212a1685
@ -60,8 +60,8 @@ enum stream_type {
|
||||
STREAM_TYPE_COUNT,
|
||||
};
|
||||
|
||||
extern const char *mpv_version;
|
||||
extern const char *mpv_builddate;
|
||||
extern const char *const mpv_version;
|
||||
extern const char *const mpv_builddate;
|
||||
|
||||
char *mp_format_time(double time, bool fractions);
|
||||
char *mp_format_time_fmt(const char *fmt, double time);
|
||||
|
@ -16,6 +16,7 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#include "common.h"
|
||||
#include "version.h"
|
||||
#ifdef NO_BUILD_TIMESTAMPS
|
||||
#undef BUILDDATE
|
||||
|
Loading…
Reference in New Issue
Block a user