Hi,
Is there a way to pass a pointer to string in a multiforward ?
I call a multiforward with strings in parameter from plugin1, plugin2 has the function and modify theses strings ... and i would like to get modifyed string in plugin1.
It doesn't work with string, I've always the same string in plugin1 ...
Quote:
plugin1:
g_MultiForward = CreateMultiForward("forward_fnc", ET_IGNORE, FP_STRING, FP_STRING, FP_STRING, FP_CELL);
...
ExecuteForward(g_MultiForward, g_MultiForwardResult, stringa, stringc,stringb, exist_flag);
...
|
Quote:
plugin2:
public forward_fnc(stringa, stringc, stringb,exist_flag)
{...
format(stringa,123,"something ...")
...
}
|
thks
__________________