funcmacro_version.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: funcmacro_version.h
  3. // Purpose: Versioning function and macro group docs
  4. // Author: wxWidgets team
  5. // Licence: wxWindows licence
  6. /////////////////////////////////////////////////////////////////////////////
  7. /**
  8. @defgroup group_funcmacro_version Versioning
  9. @ingroup group_funcmacro
  10. The following constants are defined in wxWidgets:
  11. @beginDefList
  12. @itemdef{ wxMAJOR_VERSION, The major version of wxWidgets }
  13. @itemdef{ wxMINOR_VERSION, The minor version of wxWidgets }
  14. @itemdef{ wxRELEASE_NUMBER, The release number }
  15. @itemdef{ wxSUBRELEASE_NUMBER, The subrelease number which is 0 for all
  16. official releases }
  17. @endDefList
  18. For example, the values or these constants for wxWidgets 2.8.7
  19. are 2, 8, 7 and 0.
  20. Additionally, wxVERSION_STRING is a user-readable string containing the full
  21. wxWidgets version and wxVERSION_NUMBER is a combination of the three version
  22. numbers above: for 2.1.15, it is 2115 and it is 2200 for wxWidgets 2.2.
  23. The subrelease number is only used for the sources in between official releases
  24. and so normally is not useful.
  25. @header{wx/version.h}
  26. */