How do I see the args? If I use win.debug(pppmem.pppmem(99)) (possibly more args) I can see nargs increase (if I wsprintf(*szargs, "%u", nargs)). But I don't see the args themselves.
For example, I figure if my service just returns (having done nothing) I'd see *szargs (in win.debug() or expr()). Likewise, if I MessageBox(NULL, *szargs, *szargs, MB_OK) and then just return I'd expect to see the first arg passed to my function. But in either case, I see nothing.
