|
|
|
|
|
awProcedureGetAndSendInfo (Function) In french: awProcédureRéceptionEtEnvoiInfo Specifies the WLanguage procedure that will be called when receiving information coming from awSendAndGetInfo. INTERNAL PROCEDURE RecoitData(b is Buffer): Buffer
Info(b)
RESULT "return"
END
awProcedureGetAndSendInfo(GetData)
Syntax
awProcedureGetAndSendInfo(<WLanguage procedure>)
<WLanguage procedure>: Procedure name Name of the WLanguage procedure ("callback") called when receiving information from awSendAndGetInfo. This procedure has the following format:
PROCEDURE <Nom de la procédure>(<Information>): Buffer ... RETURN <Answer> where <Information> and <Answer> are Buffer variables. Remarks Tip: Call this function in the project initialization code so that the procedure is accessible as soon as the application is started.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|