Hi all,
I'm working on User Define Function.
When I want to create a new function, how can I call(use) the function which already existed in my define function.
For exemple:
.....
II_STATUS
my_function(
II_SCB *scb,
II_DATA_VALUE *p1,
II_DATA_VALUE *rdv
){
string field1;
....
/*call the function*/
replace(field1, ':', '$')
....
}
....
Please give me more detail explain.
Thx