41 lines
1.2 KiB
C
Executable File
41 lines
1.2 KiB
C
Executable File
/*!***************************************************************************
|
|
@File sdkver.h
|
|
|
|
@Title Version numbers and strings.
|
|
|
|
@Date 08/11/2011
|
|
|
|
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
|
|
|
|
@Platform Independant
|
|
|
|
@Description Version numbers and strings for SDK components.
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifndef __SDKVER_H_
|
|
#define __SDKVER_H_
|
|
|
|
/*!***************************************************************************
|
|
Defines
|
|
*****************************************************************************/
|
|
|
|
#define PVRSDK_VERSION "5.1"
|
|
#define PVRSDK_BUILD "18.1@5086772"
|
|
#define PVRVERSION_MAJ "18"
|
|
#define PVRVERSION_MIN "1"
|
|
#define PVRVERSION_BRANCH "181"
|
|
#define PVRVERSION_BRANCH_DEC "18.1"
|
|
#define PVRVERSION_BRANCH_NAME "REL/18.1"
|
|
#define PVRVERSION_BUILD "5086772"
|
|
#define PVRVERSION_BUILD_HI "508"
|
|
#define PVRVERSION_BUILD_LO "6772"
|
|
|
|
#define PVRSDK_COPYRIGHT_TXT "Copyright (c) Imagination Technologies Ltd. All Rights Reserved."
|
|
|
|
#endif /* __SDKVER_H_ */
|
|
|
|
/*****************************************************************************
|
|
End of file (sdkver.h)
|
|
*****************************************************************************/
|