|
|
|
|
|
awProcedureGetInfo (Function) In french: awProcédureRéceptionInfo Specifies the WLanguage procedure that will be called when receiving information coming from awSendInfo. INTERNAL PROCEDURE RecoitDonnées(b is Buffer)
Info(b)
END
awProcedureGetInfo(RecoitDonnées)
Syntax
awProcedureGetInfo(<WLanguage procedure>)
<WLanguage procedure>: Procedure name Name of the WLanguage procedure ("callback") called when receiving information from awSendInfo. This procedure has the following format:
PROCEDURE <Procedure name>(<Response>) where <Response> is a Buffer variable. Remarks Tip: Call this function in the project initialization code so that the procedure is accessible as soon as the application is started.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|