hkConfigVersion.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. // Build configuration settings
  9. // These are compile time settings for the libraries.
  10. // Changing these values with compiled libs will not work,
  11. //
  12. // Build number and version number
  13. // The version number must match the version of the libraries
  14. // but the build number is for informative reasons only as multiple
  15. // builds will work with each other but they must have the same
  16. // version number, which is of the form XX.YY.ZZ stored as XXYYZZ
  17. // and the build number is the date of release in the form
  18. // YEAR-MONTH-DAY stored YEARMNDY
  19. //
  20. #ifndef HK_BASE_CONFIGVERSION_H
  21. #define HK_BASE_CONFIGVERSION_H
  22. #define HAVOK_SDK_VERSION_MAJOR 6
  23. #define HAVOK_SDK_VERSION_MINOR 5
  24. #define HAVOK_SDK_VERSION_POINT 0
  25. // release id must be less than 3 chars to fit in binary packfile header.
  26. // Use the following ids:
  27. // alpha -> "aN", beta -> "bN", release -> "rN" and internal -> "$$"
  28. #define HAVOK_SDK_VERSION_RELEASE "r1"
  29. #define HAVOK_SDK_VERSION_NUMBER ((10000*HAVOK_SDK_VERSION_MAJOR) + (100*HAVOK_SDK_VERSION_MINOR) + (HAVOK_SDK_VERSION_POINT))
  30. // HAVOK version string
  31. // temporary definitions
  32. #define HK_STRING0 "0"
  33. #define HK_STRING1 "1"
  34. #define HK_STRING2 "2"
  35. #define HK_STRING3 "3"
  36. #define HK_STRING4 "4"
  37. #define HK_STRING5 "5"
  38. #define HK_STRING6 "6"
  39. #define HK_STRING7 "7"
  40. #define HK_STRING8 "8"
  41. #define HK_STRING9 "9"
  42. #define HK_NUM_TO_STR(NUM) HK_STRING##NUM
  43. #define HAVOK_SDK_VERSION_STRING_SPEC(MAJOR,MINOR,POINT,RELEASE) "Havok-" HK_NUM_TO_STR(MAJOR) "." HK_NUM_TO_STR(MINOR) "." HK_NUM_TO_STR(POINT) "-" RELEASE
  44. // define HAVOK version string
  45. #define HAVOK_SDK_VERSION_STRING HAVOK_SDK_VERSION_STRING_SPEC(HAVOK_SDK_VERSION_MAJOR,HAVOK_SDK_VERSION_MINOR,HAVOK_SDK_VERSION_POINT,HAVOK_SDK_VERSION_RELEASE)
  46. #define HAVOK_BUILD_NUMBER 20090216
  47. #endif // HK_BASE_CONFIGVERSION_H
  48. /*
  49. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  50. * Confidential Information of Havok.  (C) Copyright 1999-2009
  51. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  52. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  53. * rights, and intellectual property rights in the Havok software remain in
  54. * Havok and/or its suppliers.
  55. * Use of this software for evaluation purposes is subject to and indicates
  56. * acceptance of the End User licence Agreement for this product. A copy of
  57. * the license is included with this software and is also available at www.havok.com/tryhavok.
  58. */