Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note that some of the flags are used in combination with checkout requests. This enables you to set flags for single checkout requests if needed. For example:

Code Block
languagecpp
/* First checkout request requires an exact version match to pass */

...


LMX_SetOption(..., LMX_OPT_EXACT_VERSION, (LMX_OPTION) 1);

...


LMX_Checkout(...);

...


/* Second checkout request does not require an exact version match to pass 

...


  but can have a higher version in license file than function request */

...


LMX_SetOption(..., LMX_OPT_EXACT_VERSION, (LMX_OPTION) 0);

...


LMX_Checkout(...);