void pescape(
Pint func_id /* escape function identifier */ const Pescape_in_data *in_data_rec /* input data for the function */ Pstore store /* handle to Store object */ Pescape_out_data **out_data_rec /* (out) output data of the function */
)
typedef void * Pstore;
typedef union {
struct Pescape_in_r1 {
int impl_dep;
} escape_in_r1;
int impl_dep;
} Pescape_in_data;
typedef union {
struct Pescape_out_r1 {
int impl_dep;
} escape_out_r1;
int impl_dep;
} Pescape_out_data;
Not implemented