LlJobClose

Syntax:

void LlJobClose (HLLJOB hJob);

Task:

Releases the internal variables, frees resources etc.

Parameter:

hJob: List & Label job handle

Hints:

This function should be called at the end (coupled with LlJobOpen() or LlJobOpenLCID()), i.e. after using the List & Label DLL or when ending your program.

Example:

HLLJOB   hJob;

hJob = LlJobOpen(1);
LlDefineVariableStart(hJob);
<... etc ...>
LlJobClose(hJob);

See also:

LlJobOpen, LlJobOpenLCID