Versions Compared

Key

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

C Example 1

...

     BOOL fOK;
int  iSession;
 

...

     iSession = LceGetSessionId();

...

     fOK = LceUsePartition(iSession,

...

 "DEM");

...

     fOK = LceUseLanguage(iSession,

...

 "FRA");
 

...

     fOK = LceOpenSession(iSession);

...

C Example 2

Use two partitions.BOOL fOK

     BOOL fOK;
int  iSession1;
int  iSession2;
 

...

     iSession1 = LceGetSessionId();

...

     fOK = LceUsePartition(iSession1,

...

 "DEM"

...

 );

...

     fOK = LceOpenSession(iSession1);
 

...

     iSession2 = LceGetSessionId();

...

     fOK = LceUsePartition(iSession2,

...

 "TRN"

...

 );

...

     fOK = LceOpenSession(iSession2);