OnExternalEvent action
Related pages:
ON externalEvent GOTO procName [PRTY prtyIdent]
externalEvent | in | Textual constant which specifies a name of the event generated by an external library. |
procName | in | Name of RPC or RPCX procedure in ESL script. The procedure must consists of one parameter of structured variable type. The values of this structured variable depend on the particular external event which is handled. |
prtyIdent | in | Optional parameter of Int type. A priority when calling RPC. |
; the function that will process an information about event RPC PROCEDURE OnExternalEvent (IN RECORD NOALIAS (SD.ExternalEventParams) _params END OnExternalEvent BEGIN ; registering the event handler with the name "ExternalEvent" ON "ExternalEvent" GOTO OnExternalEvent END
Related pages:
Pridať komentár