Versions Compared

Key

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

...

To ensure successful license checkout, base your code on the following example, where "nYear", "nMonth" and "nDay" indicate a year, month, and day of the software release respectively.

Code Block
languagecpp
int nYear = 2014;
int nMonth = 9;
int nDay = 22;

int nMajor = nYear;
int nMinor = nMonth * 10 + nDay;

LMX_Checkout(LmxHandle, "F1", nMajor, nMinor, 1);

...