Hi,
I'm trying to figure out a way of replaying a parameter callback from an AEL function. Up to now, I only manage to make ADS crash which is not my point
Let's say that I have a callback defined this way
defun mycb(cbP,clientData,callData) {
de_info("callback");
}
What should I pass in my script to replay it ? I know how to define clientData but I have no idea of what to give to cbP and callData !
Any help would be appreciated.
Cedric
I'm trying to figure out a way of replaying a parameter callback from an AEL function. Up to now, I only manage to make ADS crash which is not my point
Let's say that I have a callback defined this way
defun mycb(cbP,clientData,callData) {
de_info("callback");
}
What should I pass in my script to replay it ? I know how to define clientData but I have no idea of what to give to cbP and callData !
Any help would be appreciated.
Cedric
pcb_get_mks();
pcb_set_mks();
You can not use these functions in other context than within a parameter callback! I.e. you can not execute it from a non-callback function. I guess this is the reason why you are crashing ADS.
So, there is no idea of figuring out the input parameters if this is your case. You will not be able to execute this function from another AEL function if your code contains these functions.