Files
UnrealEngine/Engine/Source/ThirdParty/libPhonon/phonon_api/include/phonon_version.h
2025-05-18 13:04:45 +08:00

17 lines
581 B
C

/*
* Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
* https://valvesoftware.github.io/steam-audio/license.html
*/
#ifndef IPL_PHONON_VERSION_H
#define IPL_PHONON_VERSION_H
#define STEAMAUDIO_VERSION_MAJOR 2
#define STEAMAUDIO_VERSION_MINOR 0
#define STEAMAUDIO_VERSION_PATCH 17
#define STEAMAUDIO_VERSION ((unsigned int(STEAMAUDIO_VERSION_MAJOR) << 16) | \
(unsigned int(STEAMAUDIO_VERSION_MINOR) << 8) | \
(unsigned int(STEAMAUDIO_VERSION_PATCH)))
#endif