Versioning

Versioning
Determining which version of wxEuphoria you are using

At parse compile time, there are several words defined for use with ifdefs. These follow the form:

  • WXEU_$MAJOR
  • WXEU_$MAJOR_$MINOR
  • WXEU_$MAJOR_$MINOR_$PATCH

    In addition, at run time, there is a public constant: wxEuphoria_Version = { MAJOR, MINOR, PATCH } The MAJOR, MINOR and PATCH elements are integers representing the current version of wxEuphoria.

    You can also use the public constant wxNEED_BUILD, which is used to ensure that an older .dll or .so is not used.