targetver.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Copyright (C) 2014 Mamadou DIOP.
  2. *
  3. * This file is part of Open Source Doubango Framework.
  4. *
  5. * DOUBANGO is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * DOUBANGO is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with DOUBANGO.
  17. *
  18. */
  19. #ifndef _TEST_TINYBFCP_VER
  20. #define _TEST_TINYBFCP_VER
  21. #if (defined(_WIN32) || defined(WIN32) || defined(_WIN32_WCE)) && !defined(__SYMBIAN32__)
  22. // The following macros define the minimum required platform. The minimum required platform
  23. // is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run
  24. // your application. The macros work by enabling all features available on platform versions up to and
  25. // including the version specified.
  26. // Modify the following defines if you have to target a platform prior to the ones specified below.
  27. // Refer to MSDN for the latest info on corresponding values for different platforms.
  28. #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
  29. #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
  30. #endif
  31. #endif
  32. #endif