TargetVer.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*******************************************************************************
  2. The content of this file includes portions of the AUDIOKINETIC Wwise Technology
  3. released in source code form as part of the SDK installer package.
  4. Commercial License Usage
  5. Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
  6. may use this file in accordance with the end user license agreement provided
  7. with the software or, alternatively, in accordance with the terms contained in a
  8. written agreement between you and Audiokinetic Inc.
  9. Apache License Usage
  10. Alternatively, this file may be used under the Apache License, Version 2.0 (the
  11. "Apache License"); you may not use this file except in compliance with the
  12. Apache License. You may obtain a copy of the Apache License at
  13. http://www.apache.org/licenses/LICENSE-2.0.
  14. Unless required by applicable law or agreed to in writing, software distributed
  15. under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
  16. OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
  17. the specific language governing permissions and limitations under the License.
  18. Copyright (c) 2023 Audiokinetic Inc.
  19. *******************************************************************************/
  20. /// \file
  21. /// Windows target version specification.
  22. #pragma once
  23. #ifndef NTDDI_VERSION // Specifies that the minimum required platform is Windows 8.0.
  24. #define NTDDI_VERSION 0x06020000 // Change this to the appropriate value to target other versions of Windows.
  25. #endif
  26. #ifndef WINVER // Specifies that the minimum required platform is Windows 8.0.
  27. #define WINVER 0x0602 // Change this to the appropriate value to target other versions of Windows.
  28. #endif
  29. #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows 8.0.
  30. #define _WIN32_WINNT 0x0602 // Change this to the appropriate value to target other versions of Windows.
  31. #endif
  32. #ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows Me.
  33. #define _WIN32_WINDOWS 0x0490 // This is already the latest possible version on this deprecated value.
  34. #endif
  35. #ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 10. (This is conservative but we don't need IE)
  36. #define _WIN32_IE 0x0A00 // Change this to the appropriate value to target other versions of IE.
  37. #endif