LlGetNotificationMessage

Syntax:

UINT LlGetNotificationMessage (HLLJOB hJob);

Task:

Returns the message number for callbacks.

Parameter:

hJob: List & Label job handle

Return Value:

Current message number

Hints:

The default message number has the value of the function RegisterWindowMessage("cmbtLLMessage");

The callback function has higher priority; if it is defined, no message is sent.

Should not be used in components that offer events on their own, e.g. .NET, VCL or OCX components.

Example:

HLLJOB   hJob;
UINT    wMsg;

LlSetDebug(TRUE);
hJob = LlJobOpen(0);
v = LlGetNotificationMessage(hJob);
...
LlJobClose(hJob);

See also:

LlSetNotificationMessage, LlSetNotificationCallback