Suppose I have a cmod function:
PIKEFUN array decodedatarow(int msglen, object portal) { ... }
Which is called as:
class portal { int a; int b; };
portal abc=portal();
decodedatarow(12, abc);
How would I access the svalues of the members a and b from within the cmod function decodedatarow() ?